diff --git a/launcher/src/components/UI/staking-page/StakingScreen.vue b/launcher/src/components/UI/staking-page/StakingScreen.vue index 84909e294..59b99c518 100644 --- a/launcher/src/components/UI/staking-page/StakingScreen.vue +++ b/launcher/src/components/UI/staking-page/StakingScreen.vue @@ -616,11 +616,7 @@ const saveExitMessage = (data, type) => { const unwrap = (entry) => (entry && entry.data ? entry.data : entry); const content = - type === "single" - ? JSON.stringify(unwrap(data), null, 2) - : data - .map((entry) => JSON.stringify(unwrap(entry), null, 2)) - .join("\n\n"); + type === "single" ? JSON.stringify(unwrap(data), null, 2) : data.map((entry) => JSON.stringify(unwrap(entry), null, 2)).join("\n\n"); const fileName = type === "single" ? "single_exit_message.txt" : "multiple_exit_messages.txt"; const blob = new Blob([content], { type: "application/json;charset=utf-8" });