Skip to content

Commit

Permalink
Merge pull request #22 from MyriadFlow/main
Browse files Browse the repository at this point in the history
chore: fix type mode in brand create page
  • Loading branch information
Joshua-Ogbonna authored Nov 9, 2024
2 parents e06a370 + 04ed094 commit a01c4e6
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 a01c4e6

Please sign in to comment.