feat: update user language

This commit is contained in:
Zamitto
2025-01-05 13:58:25 -03:00
parent 6d86002977
commit 901dcb676f
2 changed files with 3 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ import { omit } from "lodash-es";
import axios from "axios";
import { fileTypeFromFile } from "file-type";
const patchUserProfile = async (updateProfile: UpdateProfileRequest) => {
export const patchUserProfile = async (updateProfile: UpdateProfileRequest) => {
return HydraApi.patch<UserProfile>("/profile", updateProfile);
};