0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

refactor(console): remove redundant reset logic on sign-in experience tabs (#1432)

This commit is contained in:
Xiao Yijun 2022-07-06 11:48:58 +08:00 committed by GitHub
parent a6005bbde3
commit f97c55c574
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 6 deletions

View file

@ -16,8 +16,6 @@ const BrandingTab = ({ defaultData, isDataDirty }: Props) => {
const { reset } = useFormContext<SignInExperienceForm>();
useEffect(() => {
reset(defaultData);
return () => {
reset(defaultData);
};

View file

@ -16,8 +16,6 @@ const OthersTab = ({ defaultData, isDataDirty }: Props) => {
const { reset } = useFormContext<SignInExperienceForm>();
useEffect(() => {
reset(defaultData);
return () => {
reset(defaultData);
};

View file

@ -15,8 +15,6 @@ const SignInMethodsTab = ({ defaultData, isDataDirty }: Props) => {
const { reset } = useFormContext<SignInExperienceForm>();
useEffect(() => {
reset(defaultData);
return () => {
reset(defaultData);
};