@capytale/meta-player 0.8.1 → 0.8.2
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.
package/package.json
CHANGED
|
@@ -40,7 +40,7 @@ const Countdown: FC = () => {
|
|
|
40
40
|
oneMinuteWarningShown.current = true;
|
|
41
41
|
toast.current?.show({
|
|
42
42
|
severity: "warn",
|
|
43
|
-
summary: "Activité non sauvegardée",
|
|
43
|
+
summary: showWarningsBecauseNoSave ? "Temps presque écoulé" : "Activité non sauvegardée",
|
|
44
44
|
detail: (
|
|
45
45
|
<>
|
|
46
46
|
<div>
|
|
@@ -89,7 +89,7 @@ const Countdown: FC = () => {
|
|
|
89
89
|
fifteenSecondsWarningShown.current = true;
|
|
90
90
|
toast.current?.show({
|
|
91
91
|
severity: "error",
|
|
92
|
-
summary: "Activité non sauvegardée",
|
|
92
|
+
summary: showWarningsBecauseNoSave ? "Temps presque écoulé" : "Activité non sauvegardée",
|
|
93
93
|
detail: (
|
|
94
94
|
<>
|
|
95
95
|
<div>
|