1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-05 20:15:31 -04:00

fixing header icons (once again)

This commit is contained in:
2025-05-22 10:50:46 -04:00
parent 9933d20868
commit f8974e9a92
7 changed files with 17 additions and 13 deletions
+2
View File
@@ -2,6 +2,7 @@
import { env } from "@/lib/env";
import { useState } from "react";
import { toast } from "sonner";
import { Loader2Icon } from "lucide-react";
import Button from "@/components/ui/button";
import { GitHubIcon } from "@/components/icons";
@@ -20,6 +21,7 @@ const SignIn = ({ callbackPath }: { callbackPath?: string }) => {
});
} catch (error) {
console.error("Error signing in:", error);
toast.error("There was a problem signing in.");
setIsLoading(false);
}
};