Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: text changes in Safe Creation #2400

Merged
merged 1 commit into from
Aug 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ const getStep = (status: SafeCreationStatus) => {
}
case SafeCreationStatus.SUCCESS:
return {
description: 'Your Safe Account was successfully created!',
instruction: 'It is now being indexed. Please do not leave this page.',
description: 'Your Safe Account is being indexed..',
instruction: 'The account will be ready for use shortly. Please do not leave this page.',
}
case SafeCreationStatus.INDEXED:
return {
Expand All @@ -48,7 +48,7 @@ const getStep = (status: SafeCreationStatus) => {
}
case SafeCreationStatus.INDEX_FAILED:
return {
description: 'Your Safe Account is created and will be picked up by our services shortly.',
description: 'Your Safe Account is successfully created!',
instruction:
'You can already open Safe{Wallet}. It might take a moment until it becomes fully usable in the interface.',
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const StatusStepper = ({ status }: { status: SafeCreationStatus }) => {
<Step>
<StatusStep isLoading={status < SafeCreationStatus.SUCCESS} safeAddress={pendingSafe.safeAddress}>
<Typography variant="body2" fontWeight="700">
Processing
Indexing
</Typography>
</StatusStep>
</Step>
Expand Down