Skip to content

Commit

Permalink
Fix uncaught error with bad import path in commit 1c926d1
Browse files Browse the repository at this point in the history
  • Loading branch information
yutotakano committed Dec 2, 2024
1 parent 1c926d1 commit 596bb63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/login_.discord.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { Link, redirect, useFetcher, useLoaderData, useLocation } from "@remix-r
import { useEffect, useRef, useState } from "react";
import { AiOutlineDiscord } from "react-icons/ai";
import { commitSession, getSession } from "../sessions";
import { getUserById, updateUserDiscordId } from "../sqlite.server";
import { getDiscordIdFromAocId } from "src/mappings.server";
import { getUserById } from "../sqlite.server";
import { getDiscordIdFromAocId } from "../mappings.server";

export default function LoginDiscord() {
const location = useLocation();
Expand Down

0 comments on commit 596bb63

Please sign in to comment.