chore: ran frontend linting

This commit is contained in:
Anish Sarkar 2026-01-09 18:22:54 +05:30
parent b17cb40732
commit 61560e5d4f
3 changed files with 10 additions and 6 deletions

View file

@ -7,7 +7,13 @@ import { cn } from "@/lib/utils";
export const Logo = ({ className }: { className?: string }) => {
return (
<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>
);
};

View file

@ -102,10 +102,8 @@ export const DateRangeSelector: FC<DateRangeSelectorProps> = ({
!endDate && "text-muted-foreground"
)}
>
<CalendarIcon className="mr-2 h-4 w-4" />
{endDate
? format(endDate, "PPP")
: "Default (Today)"}
<CalendarIcon className="mr-2 h-4 w-4" />
{endDate ? format(endDate, "PPP") : "Default (Today)"}
</Button>
</PopoverTrigger>
<PopoverContent className="w-auto p-0 z-[100]" align="start">

View file

@ -79,7 +79,7 @@ export const useConnectorDialog = () => {
connectorType: string;
connectorTitle: string;
} | null>(null);
// Track if we came from accounts list when entering edit mode
const [cameFromAccountsList, setCameFromAccountsList] = useState<{
connectorType: string;