From 3dd115dce12d2a2ef229a396fd6ff9f568a2be4a Mon Sep 17 00:00:00 2001 From: Jawher Kl Date: Fri, 14 Feb 2025 13:40:28 +0100 Subject: [PATCH] fix: classname import path Resolves #8204 --- src/components/AuthenticationFlow/GitHubButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AuthenticationFlow/GitHubButton.tsx b/src/components/AuthenticationFlow/GitHubButton.tsx index 3e6681730..adba8132f 100644 --- a/src/components/AuthenticationFlow/GitHubButton.tsx +++ b/src/components/AuthenticationFlow/GitHubButton.tsx @@ -5,7 +5,7 @@ import { COURSE_PURCHASE_PARAM, setAuthToken, } from '../../lib/jwt'; -import { cn } from '../../../editor/utils/classname.ts'; +import { cn } from '../../lib/classname.ts'; import { httpGet } from '../../lib/http'; import { Spinner } from '../ReactIcons/Spinner.tsx'; import { CHECKOUT_AFTER_LOGIN_KEY } from './CourseLoginPopup.tsx';