From 0a0ce6a76c243a11460dd60811df1778ba763ccf Mon Sep 17 00:00:00 2001 From: Ravi Kumar L Date: Sun, 21 Jun 2026 17:48:58 +0200 Subject: [PATCH] test: fix upload dialog import order --- .../Skills/dialogs/__tests__/UploadSkillDialog.spec.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Skills/dialogs/__tests__/UploadSkillDialog.spec.tsx b/client/src/components/Skills/dialogs/__tests__/UploadSkillDialog.spec.tsx index d38ee15773..aba5cde1f1 100644 --- a/client/src/components/Skills/dialogs/__tests__/UploadSkillDialog.spec.tsx +++ b/client/src/components/Skills/dialogs/__tests__/UploadSkillDialog.spec.tsx @@ -1,6 +1,6 @@ import { fireEvent, render, screen, waitFor } from '@testing-library/react'; -import type { ReactNode } from 'react'; import type { FileConfigInput } from 'librechat-data-provider'; +import type { ReactNode } from 'react'; import UploadSkillDialog from '../UploadSkillDialog'; const mockMutate = jest.fn();