Skip to content

Commit e704151

Browse files
committed
Fix circular dependency
1 parent 70b7086 commit e704151

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/content-presentation/notification-banner/NotificationBanner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { type ComponentPropsWithoutRef, forwardRef } from 'react';
22
import classNames from 'classnames';
3-
import { HeadingLevel } from '#components';
3+
import { HeadingLevel } from '#components/utils/HeadingLevel.js';
44
import { NotificationBannerHeading, NotificationBannerLink } from './components/index.js';
55

66
export interface NotificationBannerProps extends ComponentPropsWithoutRef<'div'> {

src/components/content-presentation/notification-banner/components/NotificationBannerHeading.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { HeadingLevel, type HeadingLevelProps } from '#components';
1+
import { HeadingLevel, type HeadingLevelProps } from '#components/utils/HeadingLevel.js';
22
import type { FC } from 'react';
33

44
export type NotificationBannerHeadingProps = HeadingLevelProps;

0 commit comments

Comments
 (0)