Skip to content

Commit

Permalink
fix import's
Browse files Browse the repository at this point in the history
  • Loading branch information
vinit717 committed Nov 8, 2023
1 parent bc2b370 commit 81077fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/utils/shortenUrl.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import shortenUrl from '@/utils/ShortenUrl';
import { UserTypes } from '@/types/user.types';
import { userData } from '../../fixtures/users';
import { TINY_API_URL } from '@/constants/url';
import shortenUrl from '@/utils/ShortenUrl';

describe('shortenUrl', () => {
beforeEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/dashboard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Toast from '@/components/Toast';
import { useState } from 'react';
import CopyIcon from '../../../public/assets/icons/copy';
import IsAuthenticated from '@/hooks/isAuthenticated';
import shortenUrl from '@/utils/shortenUrl';
import shortenUrl from '@/utils/ShortenUrl';

const Dashboard = () => {
const [url, getUrl] = useState<string>('');
Expand Down

0 comments on commit 81077fb

Please sign in to comment.