Skip to content

Commit

Permalink
type name to singular
Browse files Browse the repository at this point in the history
  • Loading branch information
chadluo committed Apr 13, 2024
1 parent 6adf8db commit e5c392c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/models/characters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type {
CharacterAscension,
Common,
Gem,
LocalSpecialities,
LocalSpeciality,
TalentBook,
TalentMaterial,
} from "./materials";
Expand All @@ -17,7 +17,7 @@ export type Character = OfMaterial & {
TalentMaterial,
TalentBook,
Common,
LocalSpecialities
LocalSpeciality
];
};

Expand Down
4 changes: 2 additions & 2 deletions src/models/materials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type Material = { name: I18nObject } & (
| CharacterAscension
| TalentBook
| TalentMaterial
| LocalSpecialities
| LocalSpeciality
| WeaponAscension
| Elite;
// eslint-disable-next-line no-mixed-spaces-and-tabs
Expand Down Expand Up @@ -140,7 +140,7 @@ export type TalentMaterial =
| "Lightless Eye of the Maelstrom"
| "Lightless Mass";

export type LocalSpecialities =
export type LocalSpeciality =
| "Calla Lily"
| "Cecilia"
| "Dandelion Seed"
Expand Down

0 comments on commit e5c392c

Please sign in to comment.