@@ -19,11 +19,11 @@ export function GodzillaTabContent({
1919 < TabsContent value = "Godzilla" >
2020 < Card >
2121 < CardContent className = "space-y-2 mt-4" >
22- < div className = "grid grid-cols-2 gap-2" >
22+ < div className = "grid grid-cols-1 md:grid-cols- 2 gap-2" >
2323 < ShellTypeFormField form = { form } shellTypes = { shellTypes } />
2424 < UrlPatternFormField form = { form } />
2525 </ div >
26- < div className = "grid grid-cols-2 gap-2" >
26+ < div className = "grid grid-cols-1 md:grid-cols- 2 gap-2" >
2727 < FormField
2828 control = { form . control }
2929 name = "godzillaPass"
@@ -32,7 +32,7 @@ export function GodzillaTabContent({
3232 < FormLabel className = "h-6 flex items-center gap-1" >
3333 { t ( "shellToolConfig.pass" ) } { t ( "optional" ) }
3434 </ FormLabel >
35- < Input { ...field } placeholder = { t ( "shellToolConfig.pass " ) } className = "h-8" />
35+ < Input { ...field } placeholder = { t ( "placeholders.input " ) } className = "h-8" />
3636 </ FormItem >
3737 ) }
3838 />
@@ -44,7 +44,7 @@ export function GodzillaTabContent({
4444 < FormLabel className = "h-6 flex items-center gap-1" >
4545 { t ( "shellToolConfig.key" ) } { t ( "optional" ) }
4646 </ FormLabel >
47- < Input { ...field } placeholder = { t ( "shellToolConfig.key " ) } className = "h-8" />
47+ < Input { ...field } placeholder = { t ( "placeholders.input " ) } className = "h-8" />
4848 </ FormItem >
4949 ) }
5050 />
@@ -54,7 +54,7 @@ export function GodzillaTabContent({
5454 render = { ( { field } ) => (
5555 < FormItem className = "gap-1" >
5656 < FormLabel className = "h-6 flex items-center gap-1" > { t ( "shellToolConfig.headerName" ) } </ FormLabel >
57- < Input { ...field } placeholder = { t ( "shellToolConfig.headerName " ) } className = "h-8" />
57+ < Input { ...field } placeholder = { t ( "placeholders.input " ) } className = "h-8" />
5858 </ FormItem >
5959 ) }
6060 />
@@ -66,7 +66,7 @@ export function GodzillaTabContent({
6666 < FormLabel className = "h-6 flex items-center gap-1" >
6767 { t ( "shellToolConfig.headerValue" ) } { t ( "optional" ) }
6868 </ FormLabel >
69- < Input { ...field } placeholder = { t ( "shellToolConfig.headerValue " ) } className = "h-8" />
69+ < Input { ...field } placeholder = { t ( "placeholders.input " ) } className = "h-8" />
7070 </ FormItem >
7171 ) }
7272 />
0 commit comments