mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix(console): add toast message on save uri success in guide
This commit is contained in:
parent
e870cb057c
commit
129ce0b568
1 changed files with 2 additions and 0 deletions
|
@ -2,6 +2,7 @@ import { I18nKey } from '@logto/phrases';
|
|||
import { Application } from '@logto/schemas';
|
||||
import React, { useRef, KeyboardEvent } from 'react';
|
||||
import { Controller, FormProvider, useForm } from 'react-hook-form';
|
||||
import { toast } from 'react-hot-toast';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import useSWR from 'swr';
|
||||
|
||||
|
@ -50,6 +51,7 @@ const UriInputField = ({ appId, name, title, isSingle = false }: Props) => {
|
|||
})
|
||||
.json<Application>();
|
||||
void mutate(updatedApp);
|
||||
toast.success(t('general.saved'));
|
||||
|
||||
// Reset form to set 'isDirty' to false
|
||||
reset(getValues());
|
||||
|
|
Loading…
Add table
Reference in a new issue