Fix UI of unexpected error dialog

This commit is contained in:
Nilay Majorwar 2022-02-19 23:08:52 +05:30
parent 7dbd58b93c
commit 2e17280863

View File

@ -6,13 +6,15 @@ const CREATE_ISSUE_URL = "https://github.com/nilaymaj/esolang-park/issues/new";
const styles = { const styles = {
errorTitle: { errorTitle: {
fontWeight: "bold", fontWeight: "bold",
whiteSpace: "pre-wrap" as "pre-wrap", whiteSpace: "pre-wrap" as const,
}, },
callStack: { callStack: {
padding: 10, padding: 10,
maxHeight: 300,
overflowY: "auto" as const,
borderRadius: 10, borderRadius: 10,
background: Colors.RED1, background: Colors.RED1,
whiteSpace: "pre-wrap" as "pre-wrap", whiteSpace: "pre-wrap" as const,
border: "1px solid " + Colors.RED4, border: "1px solid " + Colors.RED4,
}, },
}; };
@ -32,6 +34,7 @@ export const ErrorBoundaryProvider = (props: { children: React.ReactNode }) => {
<Toast <Toast
icon="error" icon="error"
intent="danger" intent="danger"
timeout={0}
onDismiss={() => setError(null)} onDismiss={() => setError(null)}
message={ message={
<Text> <Text>