chore: lint

This commit is contained in:
Bereket Engida
2024-10-05 16:20:14 +03:00
parent 4733e2f393
commit a0e94b328f
3 changed files with 298 additions and 298 deletions

View File

@@ -20,7 +20,7 @@ interface NavbarMobileContextProps {
}
const NavbarContext = createContext<NavbarMobileContextProps | undefined>(
undefined
undefined,
);
export const NavbarProvider = ({ children }: { children: React.ReactNode }) => {
@@ -47,7 +47,7 @@ export const useNavbarMobile = (): NavbarMobileContextProps => {
const context = useContext(NavbarContext);
if (!context) {
throw new Error(
"useNavbarMobile must be used within a NavbarMobileProvider"
"useNavbarMobile must be used within a NavbarMobileProvider",
);
}
return context;