web/satellite: update wording of limit increase success notification

This change updates the wording of the notification that appears after
successfully submitting a project limit increase request. The
notification now indicates how long it will take for the new limit to
be applied.

Resolves #6291

Change-Id: Ia034e5576a3a04246e38a0583b1febb832794afc
This commit is contained in:
Jeremy Wharton 2023-09-27 11:27:53 -05:00 committed by Storj Robot
parent a5c1d9aa19
commit 1d1f8811a8

View File

@ -298,7 +298,10 @@ async function sendRequest(): Promise<void> {
limit = limit * Number(Memory.TB);
}
await projectsStore.requestLimitIncrease(activeLimit.value, limit);
notify.success('Request sent successfully');
notify.success('', `
<span class="message-title">Your request for limits increase has been submitted.</span>
<span class="message-info">Limit increases may take up to 3 business days to be reflected in your limits.</span>
`);
closeModal();
} catch (error) {
notify.error(error.message, AnalyticsErrorEventSource.REQUEST_PROJECT_LIMIT_MODAL);