Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Haaxor1689 committed Aug 5, 2024
1 parent 7133406 commit 7a703bf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/calculator/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Suspense } from 'react';
import PersonalBuilds from '~/components/builds-lists/PersonalBuilds';
import TurtleBuilds from '~/components/builds-lists/TurtleBuilds';
import Spinner from '~/components/styled/Spinner';
import SpellIcon from '~/components/styled/TalentIcon';
import SpellIcon from '~/components/styled/SpellIcon';

const Page = () => (
<>
Expand Down
2 changes: 0 additions & 2 deletions src/components/builder/TalentEdit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import { useFormContext, useWatch } from 'react-hook-form';
import { Link2Off, Trash2 } from 'lucide-react';
import { useSession } from 'next-auth/react';

import { Talent, type TalentFormT } from '~/server/api/types';

Expand Down Expand Up @@ -54,7 +53,6 @@ type Props = {
};

const TalentEdit = ({ selected, editable }: Props) => {
const session = useSession();
const { register, setValue } = useFormContext<TalentFormT>();
return (
<div className="flex w-full flex-col gap-4 md:max-w-md">
Expand Down

0 comments on commit 7a703bf

Please sign in to comment.