From fdb2f8cf599d8fb7f00a6428610bafa2bbdd5dde Mon Sep 17 00:00:00 2001 From: Joey Wunderlich Date: Tue, 13 Aug 2024 10:45:16 -0700 Subject: [PATCH] fiddle with displayed buttons --- editor/dialogs.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/editor/dialogs.tsx b/editor/dialogs.tsx index 0560df83883..14bddb18634 100644 --- a/editor/dialogs.tsx +++ b/editor/dialogs.tsx @@ -22,9 +22,9 @@ export async function showProgramTooLargeErrorAsync(variants: string[], confirmA header: lf("Oops, there was a problem downloading your code"), body: lf("Great coding skills! Unfortunately, your program is too large to fit on a micro:bit V2😢. You can go back and try to make your program smaller, or continue to use the simulator to run your code."), bigHelpButton: true, - agreeLbl: lf("Go Back"), - agreeClass: "positive", - agreeIcon: "cancel", + hideAgree: true, + disagreeLbl: lf("Go Back"), + disagreeClass: "positive", }); return undefined }