fix: add group id field to ApiKeyModal #1353 (#1540)

### What problem does this PR solve?

fix: add group id field to ApiKeyModal #1353
### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2024-07-17 09:45:10 +08:00
committed by GitHub
parent 00943dc04a
commit baeedc699d
3 changed files with 17 additions and 5 deletions

View File

@ -0,0 +1,5 @@
export interface ApiKeyPostBody {
api_key: string;
base_url: string;
group_id?: string;
}