Auto-dismiss 'pack installed' tooltip after 10 seconds (not 1m)

This commit is contained in:
Scott Nonnenberg
2019-12-18 11:28:34 -08:00
committed by Ken Powers
parent 6092284fdb
commit 2bf9cf6716

View File

@@ -183,7 +183,7 @@ export const StickerButton = React.memo(
() => {
if (installedPack) {
// tslint:disable-next-line:no-string-based-set-timeout
const timerId = setTimeout(clearInstalledStickerPack, 60 * 1000);
const timerId = setTimeout(clearInstalledStickerPack, 10 * 1000);
return () => {
clearTimeout(timerId);