Fixed the button text in the password dialog

This commit is contained in:
Mathias Wagner
2022-05-09 23:13:04 +02:00
parent 0c595c1e28
commit 7886bf9048
+1
View File
@@ -23,6 +23,7 @@ export const ConfigProvider = (props) => {
placeholder: "Dein Passwort",
description: localStorage.getItem("password") ? <span className="icon-red">Das von dir eingegebene Passwort ist falsch</span> : "",
password: true,
buttonText: "Fertig",
onClose: () => window.location.reload(),
onSuccess: (value) => {
localStorage.setItem("password", value);