From 96f9642dc9a5f65909f8dcf716a795ffec78f74b Mon Sep 17 00:00:00 2001 From: Ryan Miller Date: Thu, 4 Jul 2024 20:18:49 +1000 Subject: [PATCH] chore: resolve auth imports --- packages/auth/components/TelegramAuthButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/auth/components/TelegramAuthButton.tsx b/packages/auth/components/TelegramAuthButton.tsx index 96badaab..a5069657 100644 --- a/packages/auth/components/TelegramAuthButton.tsx +++ b/packages/auth/components/TelegramAuthButton.tsx @@ -2,10 +2,10 @@ import { Button } from '@session/ui/ui/button'; import { LoginButton } from '@telegram-auth/react'; -import { TelegramIcon } from 'icons/TelegramIcon'; import { forwardRef } from 'react'; -import { ButtonDataTestId } from 'testing/data-test-ids'; +import { TelegramIcon } from '../icons/TelegramIcon'; import { signIn, signOut, useSession } from '../lib/client'; +import { ButtonDataTestId } from '../testing/data-test-ids'; type TelegramAuthButtonProps = React.ButtonHTMLAttributes & { csrfToken: string;