mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
fixed quotes
This commit is contained in:
parent
e8f0ec1f36
commit
26e6d8d41b
1 changed files with 8 additions and 8 deletions
|
@ -1,11 +1,11 @@
|
||||||
import { createContext, FC, useCallback, useContext } from "react";
|
import { createContext, FC, useCallback, useContext } from 'react';
|
||||||
import { ApiUpdateUserRequest, IUser } from "~/redux/auth/types";
|
import { ApiUpdateUserRequest, IUser } from '~/redux/auth/types';
|
||||||
import { useGetProfile } from "~/hooks/profile/useGetProfile";
|
import { useGetProfile } from '~/hooks/profile/useGetProfile';
|
||||||
import { EMPTY_USER } from "~/redux/auth/constants";
|
import { EMPTY_USER } from '~/redux/auth/constants';
|
||||||
import { usePatchProfile } from "~/hooks/profile/usePatchProfile";
|
import { usePatchProfile } from '~/hooks/profile/usePatchProfile';
|
||||||
import { useUser } from "~/hooks/user/userUser";
|
import { useUser } from '~/hooks/user/userUser';
|
||||||
import { useDispatch } from "react-redux";
|
import { useDispatch } from 'react-redux';
|
||||||
import { authSetUser } from "~/redux/auth/actions";
|
import { authSetUser } from '~/redux/auth/actions';
|
||||||
|
|
||||||
interface ProfileProviderProps {
|
interface ProfileProviderProps {
|
||||||
username: string;
|
username: string;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue