Skip to content

Commit

Permalink
Merge pull request #63 from Osadhi/deepsource-transform-f588a406
Browse files Browse the repository at this point in the history
style: format code with Prettier
  • Loading branch information
Osadhi authored Feb 1, 2024
2 parents b4038a5 + ee367d7 commit 207f7e5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions components/main/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ import {
Settings,
Trash,
} from "lucide-react";
import React, {ElementRef, useCallback, useEffect, useRef, useState} from "react";
import React, {
ElementRef,
useCallback,
useEffect,
useRef,
useState,
} from "react";
import { useMediaQuery } from "usehooks-ts";
import { useParams, usePathname, useRouter } from "next/navigation";
import { cn } from "@/lib/utils";
Expand Down Expand Up @@ -89,7 +95,7 @@ export const Navigation = () => {

setTimeout(() => setIsResetting(false), 300);
}
},[isMobile]);
}, [isMobile]);

const collapse = () => {
if (sidebarRef.current && navbarRef.current) {
Expand Down

0 comments on commit 207f7e5

Please sign in to comment.