Skip to content

Commit

Permalink
lintfix
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Dec 20, 2023
1 parent 901852b commit 3bca60d
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions packages/@glimmer/validator/lib/validators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,27 +266,27 @@ export function createTag(label?: DevMode<TagDescription>): DirtyableTag {
return createTagWithId(
DIRYTABLE_TAG_ID,
label ??
devmode(
() =>
({
reason: 'cell',
label: ['(dirtyable)'],
}) satisfies TagDescription
)
devmode(
() =>
({
reason: 'cell',
label: ['(dirtyable)'],
}) satisfies TagDescription
)
);
}

export function createUpdatableTag(label?: DevMode<TagDescription>): UpdatableTag {
return createTagWithId(
UPDATABLE_TAG_ID,
label ??
devmode(
() =>
({
reason: 'cell',
label: ['(updatable)'],
}) satisfies TagDescription
)
devmode(
() =>
({
reason: 'cell',
label: ['(updatable)'],
}) satisfies TagDescription
)
);
}

Expand Down

0 comments on commit 3bca60d

Please sign in to comment.