We changed the method in the New route to use the Next.js Router, which is causing us to navigate to the Party route and causing issues. This change makes it so that users stay on the same tab when they reach their destination.
26 lines
265 B
TypeScript
26 lines
265 B
TypeScript
export enum ButtonType {
|
|
Base,
|
|
IconOnly,
|
|
Destructive,
|
|
}
|
|
|
|
export enum GridType {
|
|
Character,
|
|
Weapon,
|
|
Summon,
|
|
}
|
|
export enum TeamElement {
|
|
Any,
|
|
Wind,
|
|
Fire,
|
|
Water,
|
|
Earth,
|
|
Dark,
|
|
Light,
|
|
}
|
|
|
|
export enum AboutTabs {
|
|
About,
|
|
Updates,
|
|
Roadmap,
|
|
}
|