Skip to content

Commit

Permalink
Remove unnecessary assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Aug 9, 2024
1 parent cb37e5d commit 1de4cf3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/helpers/id.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { v7 as uuid } from 'uuid';

export function id(): string {
return uuid() as string;
return uuid();
}
2 changes: 1 addition & 1 deletion src/app/home/home.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class HomeComponent {
count: computed(() => this.modService.mod().spawners.length),
},
{
name: 'Dialogs',
name: 'NPC Scripts/Dialogs',
count: computed(() => this.modService.mod().dialogs.length),
},
{
Expand Down

0 comments on commit 1de4cf3

Please sign in to comment.