Skip to content

Commit

Permalink
chore: fix type mode in brand create page
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua-Ogbonna committed Nov 9, 2024
1 parent e06a370 commit 04ed094
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/create-brand/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client"
"use client";

import BrandForm from "@/components/BrandForm"
import BrandForm from "@/components/BrandForm";

export default function CreateBrand() {
return <BrandForm mode="edit"/>
}
return <BrandForm mode="create" />;
}

0 comments on commit 04ed094

Please sign in to comment.