mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-12 01:02:39 +02:00
chore: ran frontend linting
This commit is contained in:
parent
b17cb40732
commit
61560e5d4f
3 changed files with 10 additions and 6 deletions
|
|
@ -7,7 +7,13 @@ import { cn } from "@/lib/utils";
|
||||||
export const Logo = ({ className }: { className?: string }) => {
|
export const Logo = ({ className }: { className?: string }) => {
|
||||||
return (
|
return (
|
||||||
<Link href="/">
|
<Link href="/">
|
||||||
<Image src="/icon-128.svg" className={cn("dark:invert", className)} alt="logo" width={128} height={128} />
|
<Image
|
||||||
|
src="/icon-128.svg"
|
||||||
|
className={cn("dark:invert", className)}
|
||||||
|
alt="logo"
|
||||||
|
width={128}
|
||||||
|
height={128}
|
||||||
|
/>
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -103,9 +103,7 @@ export const DateRangeSelector: FC<DateRangeSelectorProps> = ({
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<CalendarIcon className="mr-2 h-4 w-4" />
|
<CalendarIcon className="mr-2 h-4 w-4" />
|
||||||
{endDate
|
{endDate ? format(endDate, "PPP") : "Default (Today)"}
|
||||||
? format(endDate, "PPP")
|
|
||||||
: "Default (Today)"}
|
|
||||||
</Button>
|
</Button>
|
||||||
</PopoverTrigger>
|
</PopoverTrigger>
|
||||||
<PopoverContent className="w-auto p-0 z-[100]" align="start">
|
<PopoverContent className="w-auto p-0 z-[100]" align="start">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue