Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
nitegeist authored and alalonde committed Nov 19, 2023
1 parent 28948e1 commit 27832ee
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions packages/web/components/Landing/Signup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@ import {
Tabs,
Text,
UnorderedList,
VStack,
useBreakpointValue,
useMultiStyleConfig,
useTab
} from '@metafam/ds';
useTab,
VStack} from '@metafam/ds';
import GuildsImg from 'assets/guilds-sun_800x800.webp';
import PatronsImg from 'assets/patrons-sun_800x820.webp';
import PlayerImg from 'assets/players-sun_800x822.webp';
Expand All @@ -26,9 +25,18 @@ import Link from 'next/link';
import { useRouter } from 'next/router';
import React, { Ref, RefObject, useState } from 'react';
import { FaArrowLeft } from 'react-icons/fa';

import { Rain } from '../OnboardingGame/Rain';
import { PerksCard, RoleCard } from './Cards';
import { RoleTitle, guildPerks, guildReasons, patronPerks, patronReasons, playerPerks, playerReasons, roles } from './data';
import {
guildPerks,
guildReasons,
patronPerks,
patronReasons,
playerPerks,
playerReasons,
roles,
RoleTitle} from './data';

const tabs = ['Player', 'Guild', 'Patron'];
const bgColors = ['green.200', '#6A88DF', '#ED61C5'];
Expand Down

0 comments on commit 27832ee

Please sign in to comment.