From dc83ba33d51b8afca9e3c3484f926dfbe277deed Mon Sep 17 00:00:00 2001 From: Melnik George Date: Wed, 2 Apr 2025 16:25:09 +0300 Subject: [PATCH] UI Improvements --- components/Editor/index.tsx | 2 -- components/Tracer/ExecutionStatus.tsx | 14 ++++++++------ components/ui/MultiButton.tsx | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/components/Editor/index.tsx b/components/Editor/index.tsx index 3458f68..68e4396 100644 --- a/components/Editor/index.tsx +++ b/components/Editor/index.tsx @@ -41,7 +41,6 @@ import { cn } from '../../util/styles' import { ArgumentsHelperModal } from './ArgumentsHelperModal' import { registerCairoLanguageSupport } from './cairoLangConfig' import Console from './Console' -import { DownloadProof } from './DownloadProof' import EditorControls from './EditorControls' import EditorFooter from './EditorFooter' import ExtraColumn from './ExtraColumn' @@ -313,7 +312,6 @@ const Editor = ({ readOnly = false, isCairoLangPage = false }: Props) => { `Proof generation successful (finished in ${formatTime(proofTime)})`, LogType.Info, ) - addToConsoleLog(, LogType.Info) if (verificationTime) { addToConsoleLog('Verifying proof...', LogType.Info) diff --git a/components/Tracer/ExecutionStatus.tsx b/components/Tracer/ExecutionStatus.tsx index fbae5a4..71c2316 100644 --- a/components/Tracer/ExecutionStatus.tsx +++ b/components/Tracer/ExecutionStatus.tsx @@ -117,14 +117,16 @@ const ExecutionStatus = ({ ) : (
diff --git a/components/ui/MultiButton.tsx b/components/ui/MultiButton.tsx index 8ac68a8..488fc8c 100644 --- a/components/ui/MultiButton.tsx +++ b/components/ui/MultiButton.tsx @@ -44,7 +44,7 @@ const MultiButton = ({ onCompileRun }: MultiButtonProps) => { break case 'run': onCompileRun('run') - setDebugMode(ProgramDebugMode.Sierra) + setDebugMode(ProgramDebugMode.Execution) break default: break