Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbradford committed Sep 5, 2023
1 parent 6e5aa46 commit 72a2d81
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/home/DashboardMode.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import SpinnerFullPage from '@/components/home/Spinner';
import { SpinnerFullPage } from '@/components/home/Spinner';
import { Form, Response, User } from '@/types';
import { getFormsFromSupabase, getResponsesFromSupabase } from '@/utils';
import { LinkIcon } from '@heroicons/react/24/outline';
Expand Down
2 changes: 1 addition & 1 deletion src/pages/forms/[id].tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import SpinnerFullPage from '@/components/home/Spinner';
import { SpinnerFullPage } from '@/components/home/Spinner';
import Page from '@/components/layout/Page';
import { Form, Response, User } from '@/types';
import {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function GetStartedButtons() {
View on GitHub
</Link>
<Link
href="/home"
href="/forms/fill/bb16be91-9ba7-40b8-8e3d-ead3cf3184ca"
className={`inline-block text-gray-500 border border-2 border-gray-500 font-semibold py-2 px-4 my-2 mx-1 rounded-lg transition duration-200 ease-in-out hover:bg-gray-200`}
>
Fill a sample form
Expand Down
2 changes: 1 addition & 1 deletion src/pages/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useSessionContext } from '@supabase/auth-helpers-react';
import { useRouter } from 'next/router';
import { useEffect, useState } from 'react';
import { Database } from '../../types/supabase';
import SpinnerFullPage from '@/components/home/Spinner';
import { SpinnerFullPage } from '@/components/home/Spinner';
import Page from '@/components/layout/Page';

export default function SettingsMode() {
Expand Down

0 comments on commit 72a2d81

Please sign in to comment.