Skip to content

Commit

Permalink
style: format code with Prettier
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 1d50674 according to the output
from Prettier.

Details: None
  • Loading branch information
deepsource-autofix[bot] authored Feb 1, 2024
1 parent 1d50674 commit ee367d7
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 ee367d7

Please sign in to comment.