Skip to content

Commit

Permalink
fix: clean
Browse files Browse the repository at this point in the history
  • Loading branch information
magrinj committed Nov 13, 2024
1 parent 0dec324 commit 43f61b8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 50 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ export const enum RecordGroupDefinitionType {
NoValue = 'no-value',
}

export const recordGroupDefaultId = 'default' as const;

export type RecordGroupDefinition = {
id: string;
fieldMetadataId: string;
Expand All @@ -18,6 +16,4 @@ export type RecordGroupDefinition = {
isVisible: boolean;
};

export type RecordGroupDefinitionId =
| RecordGroupDefinition['id']
| typeof recordGroupDefaultId;
export type RecordGroupDefinitionId = RecordGroupDefinition['id'];

This file was deleted.

0 comments on commit 43f61b8

Please sign in to comment.