From a2345b17bf8ffdb0c10c789e92eb0d248f6b9166 Mon Sep 17 00:00:00 2001 From: Joseph Izang Date: Sat, 2 Dec 2023 03:28:35 +0100 Subject: [PATCH] restore component --- apps/vyper/src/app/app.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/vyper/src/app/app.tsx b/apps/vyper/src/app/app.tsx index 8c200c28a7..f80d91e1b1 100644 --- a/apps/vyper/src/app/app.tsx +++ b/apps/vyper/src/app/app.tsx @@ -22,7 +22,7 @@ interface AppState { } interface OutputMap { - [fileName: string]: VyperCompilationOutput + [fileName: string]: any } const App: React.FC = () => { @@ -106,7 +106,8 @@ const App: React.FC = () => {
- {Object.keys(output).length > 0 ? : null} +
Result Output!
+ {Object.keys(output).length > 0 ? : null}