@eclass/ui-kit 1.57.3 → 1.57.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7298,7 +7298,7 @@ function FlashNotification({
7298
7298
  },
7299
7299
  children: message
7300
7300
  }), {
7301
- duration: state === "success" ? handleTime(message) : Infinity,
7301
+ duration: ["success", "info"].includes(state) ? handleTime(message) : Infinity,
7302
7302
  id: alertStates[state].id
7303
7303
  });
7304
7304
  }, [message, state, m2]);