Skip to content

Commit

Permalink
cleanup onboarding cubit
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierChanth committed Oct 16, 2024
1 parent fc49f12 commit c81fed3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class OnboardingCubit extends LoggingCubit<OnboardingState> {
String? rootDomain,
}) =>
emit(OnboardingState(
atSign: atSign ?? this.state.atSign,
status: status ?? this.state.status,
rootDomain: rootDomain ?? this.state.rootDomain,
atSign: atSign ?? state.atSign,
status: status ?? state.status,
rootDomain: rootDomain ?? state.rootDomain,
));
}

Expand Down

0 comments on commit c81fed3

Please sign in to comment.