chore(web): auto sort imports (#7118)

chore(web): auto sort impomrts
This commit is contained in:
Jason Rasmussen 2024-02-14 10:54:32 -05:00 committed by GitHub
parent 2906950188
commit 747df0ae86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 32 additions and 9 deletions

View file

@ -1,7 +1,7 @@
import '@testing-library/jest-dom';
import { render, type RenderResult, waitFor } from '@testing-library/svelte';
import { render, waitFor, type RenderResult } from '@testing-library/svelte';
import { get } from 'svelte/store';
import { notificationController, NotificationType } from '../notification';
import { NotificationType, notificationController } from '../notification';
import NotificationList from '../notification-list.svelte';
function _getNotificationListElement(sut: RenderResult<NotificationList>): HTMLAnchorElement | null {