Skip to content

Commit

Permalink
fix(types): person order
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksasiriski committed Jan 5, 2025
1 parent 47b5b0e commit 068c7b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/types/person.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { State } from './state';

export type PersonType = 'Student' | 'Employee' | 'Guest';
export type PersonType = 'Employee' | 'Guest' | 'Student';
export const Employee: PersonType = 'Employee';
export const Guest: PersonType = 'Guest';
export const Student: PersonType = 'Student';
Expand Down

0 comments on commit 068c7b0

Please sign in to comment.