From 9ef81958fc0202638f5770827bfdddeff7aa0573 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Mon, 3 May 2021 19:01:48 +0530 Subject: [PATCH] Fix indentation --- src/code-store.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/code-store.js b/src/code-store.js index 2efea84a..90525bc3 100644 --- a/src/code-store.js +++ b/src/code-store.js @@ -6,11 +6,11 @@ const isDarkMode = window.matchMedia('(prefers-color-scheme: dark)').matches && false; const defaultState = { code: `graph TD -A[Christmas] -->|Get money| B(Go shopping) -B --> C{Let me think} -C -->|One| D[Laptop] -C -->|Two| E[iPhone] -C -->|Three| F[fa:fa-car Car] + A[Christmas] -->|Get money| B(Go shopping) + B --> C{Let me think} + C -->|One| D[Laptop] + C -->|Two| E[iPhone] + C -->|Three| F[fa:fa-car Car] `, mermaid: { theme: isDarkMode ? 'dark' : 'default' }, };