Skip to content

Commit

Permalink
fix: type import
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Jul 7, 2024
1 parent 0dc802a commit e46fbd4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion apps/web/src/components/Shared/Club/Join.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import type { FC } from 'react';

import errorToast from '@helpers/errorToast';
import getAuthApiHeaders from '@helpers/getAuthApiHeaders';
import { HEY_API_URL } from '@hey/data/constants';
import { Button } from '@hey/ui';
import axios from 'axios';
import { type FC, useState } from 'react';
import { useState } from 'react';
import toast from 'react-hot-toast';

interface JoinProps {
Expand Down
3 changes: 2 additions & 1 deletion apps/web/src/components/Shared/Club/JoinLeaveButton.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { Club } from '@hey/types/club';
import type { FC } from 'react';

import { Button } from '@hey/ui';
import { type FC, useEffect, useState } from 'react';
import { useEffect, useState } from 'react';

import Join from './Join';

Expand Down

1 comment on commit e46fbd4

@vercel
Copy link

@vercel vercel bot commented on e46fbd4 Jul 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./apps/web

web-heyxyz.vercel.app
web-git-main-heyxyz.vercel.app
heyxyz.vercel.app
hey.xyz

Please sign in to comment.