fix: resolve some type errors

This commit is contained in:
Aarnav Tale
2025-04-26 13:25:51 -04:00
parent 021ecabd3c
commit 7f5e0fe42d
2 changed files with 3 additions and 7 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ export async function userAction({
case 'rename_user':
return renameUser(formData, apiKey, context);
case 'reassign_user':
return reassignUser(formData, apiKey, context, session);
return reassignUser(formData, apiKey, context);
default:
throw data400('Invalid `action_id` provided.');
}