From 4a53d9fea61139fe10d1b7684b800aa01e055f42 Mon Sep 17 00:00:00 2001 From: dschlabach Date: Thu, 21 Nov 2024 12:05:43 -0500 Subject: [PATCH] update import --- src/packages/core/utils/findComponent.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/packages/core/utils/findComponent.test.tsx b/src/packages/core/utils/findComponent.test.tsx index 67cc8ac5ee..aff0282c0e 100644 --- a/src/packages/core/utils/findComponent.test.tsx +++ b/src/packages/core/utils/findComponent.test.tsx @@ -1,7 +1,7 @@ import type { ReactNode } from 'react'; import { describe, expect, it } from 'vitest'; -import { Avatar } from '../../identity/components/Avatar'; -import { Name } from '../../identity/components/Name'; +import { Avatar } from '../../../identity/components/Avatar'; +import { Name } from '../../../identity/components/Name'; import { findComponent } from './findComponent'; describe('findComponent', () => {