Skip to content

Commit

Permalink
chore: remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
QuietNatu committed Aug 31, 2024
1 parent c356a8e commit 1cac17a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions apps/rotom/src/app/core/tokens/config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Injectable, InjectionToken, signal } from '@angular/core';
import { InjectionToken } from '@angular/core';
import { Day, FirstWeekContainsDate } from 'date-fns';

export interface AppConfig {
Expand Down Expand Up @@ -28,8 +28,3 @@ const appConfig: AppConfig = {
};

export const APP_CONFIG = new InjectionToken('APP_CONFIG', { factory: () => appConfig });

@Injectable({ providedIn: 'root' })
export class AppConfigService {
readonly config = signal<AppConfig>(appConfig);
}

0 comments on commit 1cac17a

Please sign in to comment.