Remove edit message/formatting onboarding
Co-authored-by: Scott Nonnenberg <scott@signal.org>
This commit is contained in:
parent
d64f77627c
commit
bef5fd6b34
12 changed files with 33 additions and 319 deletions
|
@ -867,17 +867,6 @@ export async function startApp(): Promise<void> {
|
|||
});
|
||||
}
|
||||
|
||||
if (window.isBeforeVersion(lastVersion, '6.22.0-alpha')) {
|
||||
const formattingWarningShown = window.storage.get(
|
||||
'formattingWarningShown',
|
||||
false
|
||||
);
|
||||
log.info(
|
||||
`Clearing formattingWarningShown. Previous value was ${formattingWarningShown}`
|
||||
);
|
||||
await window.storage.put('formattingWarningShown', false);
|
||||
}
|
||||
|
||||
if (window.isBeforeVersion(lastVersion, 'v1.29.2-beta.1')) {
|
||||
// Stickers flags
|
||||
await Promise.all([
|
||||
|
@ -946,6 +935,11 @@ export async function startApp(): Promise<void> {
|
|||
await window.storage.remove('lastHeartbeat');
|
||||
await window.storage.remove('lastStartup');
|
||||
}
|
||||
|
||||
if (window.isBeforeVersion(lastVersion, 'v7.8.0-beta.1')) {
|
||||
await window.storage.remove('sendEditWarningShown');
|
||||
await window.storage.remove('formattingWarningShown');
|
||||
}
|
||||
}
|
||||
|
||||
setAppLoadingScreenMessage(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue