mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 21:29:36 +00:00
Fix return type on updateUserConfig (#785)
This commit is contained in:
@@ -32,7 +32,7 @@ export type UserConfigType = {
|
||||
sponsorblock_id?: number;
|
||||
};
|
||||
|
||||
const updateUserConfig = async (config: UserConfigType): Promise<UserMeType> => {
|
||||
const updateUserConfig = async (config: UserConfigType): Promise<UserConfigType> => {
|
||||
const apiUrl = getApiUrl();
|
||||
const csrfCookie = getCookie('csrftoken');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user