From 660323c4aafd22e2e679bed8daafba1e992150c1 Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Sun, 17 Dec 2023 11:49:59 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Prettify?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Marco Caversaccio --- README.md | 4 ++-- interface/src/pages/abi.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1b322901..107f165c 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,8 @@ Factory smart contract to make easier and safer usage of the [`CREATE`](https:// - [Test Coverage](#test-coverage) - [ABI (Application Binary Interface)](#abi-application-binary-interface) - [New Deployment(s)](#new-deployments) - - [`ethers.js`](#ethersjs) - - [`cast`](#cast) + - [`ethers.js`](#ethersjs) + - [`cast`](#cast) - [Contract Verification](#contract-verification) - [`CreateX` Deployments](#createx-deployments) - [🙏🏼 Acknowledgement](#-acknowledgement) diff --git a/interface/src/pages/abi.tsx b/interface/src/pages/abi.tsx index 8b9f24ad..a907b568 100644 --- a/interface/src/pages/abi.tsx +++ b/interface/src/pages/abi.tsx @@ -106,7 +106,7 @@ const Abi = () => { const importTheme = async () => { // Define the new stylesheet href based on the theme and get it's element. const newStylesheetHref = - theme === "dark" ? "prism-dark.css" : "prism-light.css"; + theme === "dark" ? "/prism-dark.css" : "/prism-light.css"; const existingStylesheet = document.getElementById("dynamic-stylesheet"); // If there's an existing stylesheet, remove it.