fixed build issues and some alignement issues
This commit is contained in:
@ -119,15 +119,12 @@ export const NameplateCustomization: FC<AvatarSelectionProps> = ({
|
||||
|
||||
return (
|
||||
<main className="flex flex-col items-center space-y-6">
|
||||
{/* Avatar Customization Section */}
|
||||
<div className="flex w-full justify-center">
|
||||
<div className="">
|
||||
{Object.entries(namePlateTextures).map(([key, { src }]) => (
|
||||
<div>
|
||||
<img className="w-[300px]" src={src} alt={""} />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
{Object.entries(namePlateTextures).map(([key, { src }]) => (
|
||||
<div key={key}>
|
||||
<img className="w-[300px]" src={src} alt={`Name Plate ${key}`} />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
<Form {...form}>
|
||||
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-6">
|
||||
|
Reference in New Issue
Block a user