fixed build issues and some alignement issues
This commit is contained in:
@ -126,15 +126,16 @@ export const SystemVoiceCustomization: FC<SystemVoiceSelectionProps> = ({
|
||||
|
||||
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(systemVoiceTextures).map(([key, { src }]) => (
|
||||
<div>
|
||||
<img className="w-[200px]" src={src} alt={""} />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
{Object.entries(systemVoiceTextures).map(([key, { src }]) => (
|
||||
<div key={key}>
|
||||
<img
|
||||
className="w-[200px]"
|
||||
src={src}
|
||||
alt={`System Voice Texture ${key}`}
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
<Form {...form}>
|
||||
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-6">
|
||||
|
Reference in New Issue
Block a user