Skip to content

Commit

Permalink
fix: removed ,,
Browse files Browse the repository at this point in the history
  • Loading branch information
tyboro2002 committed Mar 27, 2024
1 parent 99a4d7a commit 96b9da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/composables/services/admins.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function useAdmin() {
create<Admin>(endpoint, admin_data, admin, Admin.fromJSON, toast, t);
}

async function deleteAdmin(id: string, , t: ComposerTranslation) {
async function deleteAdmin(id: string, t: ComposerTranslation) {
const endpoint = endpoints.admins.retrieve.replace('{id}', id);
delete_id<Admin>(endpoint, admin, Admin.fromJSON, toast, t);
}
Expand Down

0 comments on commit 96b9da4

Please sign in to comment.