Skip to content

Commit 4e1eb3f

Browse files
BboyAkersdawsontoth
authored andcommitted
fix: Removed black background on new app form inputs
1 parent f94f354 commit 4e1eb3f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/features/instance/applications/new/CreateNewProjectForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function CreateNewProjectForm({
6262
<FormItem>
6363
<FormLabel className="pb-1 text-center">New Project Name</FormLabel>
6464
<FormControl>
65-
<Input type="text" placeholder="e-commerce-store" className="text-center bg-black" {...field} />
65+
<Input type="text" placeholder="e-commerce-store" className="text-center" {...field} />
6666
</FormControl>
6767
<FormMessage />
6868
</FormItem>

src/features/instance/applications/new/ImportProjectForm.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function ImportProjectForm({
8080
<FormItem>
8181
<FormLabel className="pb-1">New Project Name</FormLabel>
8282
<FormControl>
83-
<Input type="text" placeholder="e-commerce-store" className="bg-black " {...field} />
83+
<Input type="text" placeholder="e-commerce-store" {...field} />
8484
</FormControl>
8585
<FormMessage />
8686
</FormItem>
@@ -96,7 +96,6 @@ export function ImportProjectForm({
9696
<Input
9797
type="url"
9898
placeholder="https://github.com/HarperDB/nextjs-example"
99-
className="bg-black"
10099
{...field}
101100
onChange={(e: FormEvent<HTMLInputElement>) => {
102101
// field.onChange(handleFetchApplication(e.currentTarget.value));

0 commit comments

Comments
 (0)