This commit is contained in:
lingdocs 2021-08-21 23:11:34 +04:00
parent 200050128c
commit af1508986d
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ const capitalize = (s: string): string => {
return s.charAt(0).toUpperCase() + s.slice(1);
}
const Account = ({ user, loadUserInfo }: { user: AT.LingdocsUser | undefined, loadUser: () => void }) => {
const Account = ({ user, loadUser }: { user: AT.LingdocsUser | undefined, loadUser: () => void }) => {
const [showingUpgradePrompt, setShowingUpgradePrompt] = useState<boolean>(false);
const [upgradePassword, setUpgradePassword] = useState<string>("");
const [upgradeError, setUpgradeError] = useState<string>("");