fix: response error on fetch invitation

This commit is contained in:
DecDuck
2025-08-23 21:07:37 +10:00
parent a91ecdd518
commit a9e8427dc3

View File

@@ -537,15 +537,13 @@ Simple authentication is the default and fallback in Drop. It relies on a simple
</CodeGroup>
```json {{ title: 'Response' }}
[
{
"id": "418d2c3f-8029-409e-b47c-0c3b158be3e1",
"isAdmin": true,
"username": "testusername",
"email": "example@example.com",
"expires": "2025-09-23T06:37:19.047Z"
}
]
{
"id": "418d2c3f-8029-409e-b47c-0c3b158be3e1",
"isAdmin": true,
"username": "testusername",
"email": "example@example.com",
"expires": "2025-09-23T06:37:19.047Z"
}
```
</Col>