1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 09:02:28 +01:00

ui: fix prettier

This commit is contained in:
Matthew Penner 2023-02-23 13:15:06 -07:00
parent 2195aa6447
commit 673f7282e0
No known key found for this signature in database

View File

@ -17,7 +17,7 @@ export interface UpdateUserValues {
}
const filters = ['id', 'uuid', 'external_id', 'username', 'email'] as const;
type Filters = typeof filters[number];
type Filters = (typeof filters)[number];
const useGetUsers = (
params?: QueryBuilderParams<Filters>,