From 465285026aff9d645b6044d37f11fd4a9df0ef2f Mon Sep 17 00:00:00 2001 From: David Requeno Date: Fri, 1 Aug 2025 22:10:10 -0600 Subject: [PATCH] fix(accounts-table): formatting --- .../lib/accounts-table/accounts-table.component.stories.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts b/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts index 4f9ff95d2..44bd3eb08 100644 --- a/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts +++ b/libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts @@ -7,9 +7,9 @@ import { RouterModule } from '@angular/router'; import { IonIcon } from '@ionic/angular/standalone'; import { moduleMetadata } from '@storybook/angular'; import type { Meta, StoryObj } from '@storybook/angular'; +import { NotificationService } from 'apps/client/src/app/core/notification/notification.service'; import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; -import { NotificationService } from 'apps/client/src/app/core/notification/notification.service'; import { GfEntityLogoComponent } from '../entity-logo'; import { GfValueComponent } from '../value'; import { GfAccountsTableComponent } from './accounts-table.component'; @@ -114,7 +114,7 @@ export default { NgxSkeletonLoaderModule, RouterModule.forChild([]) ], - providers: [NotificationService], + providers: [NotificationService] }) ] } as Meta;