Auto-dismiss 'pack installed' tooltip after 10 seconds (not 1m)
This commit is contained in:
parent
6092284fdb
commit
2bf9cf6716
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ export const StickerButton = React.memo(
|
||||||
() => {
|
() => {
|
||||||
if (installedPack) {
|
if (installedPack) {
|
||||||
// tslint:disable-next-line:no-string-based-set-timeout
|
// tslint:disable-next-line:no-string-based-set-timeout
|
||||||
const timerId = setTimeout(clearInstalledStickerPack, 60 * 1000);
|
const timerId = setTimeout(clearInstalledStickerPack, 10 * 1000);
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
clearTimeout(timerId);
|
clearTimeout(timerId);
|
||||||
|
|
Loading…
Reference in a new issue