Remove typo from deleteSession()
(#21466)
This commit is contained in:
parent
7ef46d201e
commit
af73a4f8da
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ export async function deleteConsent(id: string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function deleteSession(id?: string) {
|
export async function deleteSession(id?: string) {
|
||||||
return request(`"/sessions${id ? `/${id}` : ""}`, {
|
return request(`/sessions${id ? `/${id}` : ""}`, {
|
||||||
method: "DELETE",
|
method: "DELETE",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue