Increase info notification timeout 1500 -> 2000

This commit is contained in:
jeffvli
2021-11-01 23:27:22 -07:00
committed by Jeff
parent 86e1bab8af
commit 81237e8688

View File

@@ -8,6 +8,6 @@ export const notifyToast = (
Notification[type]({
title: message,
description,
duration: type === 'info' ? 1500 : type === 'success' ? 2500 : 3000,
duration: type === 'info' ? 2000 : type === 'success' ? 2500 : 3000,
});
};