diff --git a/README.md b/README.md index ad010f6f..efa10f4b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- + GitHub Header

🍭 My blog built with Astro + TypeScript. Neat. @@ -8,9 +8,9 @@ kremalicious.com

- - - + CI workflow badge + CodeClimate maintainability badge + CodeClimate coverage badge

--- diff --git a/content/articles/2020-05-08-uses/index.md b/content/articles/2020-05-08-uses/index.md index 10cdd040..72c2d833 100644 --- a/content/articles/2020-05-08-uses/index.md +++ b/content/articles/2020-05-08-uses/index.md @@ -27,7 +27,6 @@ My office is where my MacBook is, all these devices go wherever I travel to: - **[MacBook Air M2 (13-inch, 2022)](https://www.apple.com/macbook-air-13-and-15-m2/)** _Midnight, M2 with 8-core CPU and 10-core GPU, 16 GB RAM, 1TB SSD, US International keyboard_ - - **[iPhone 14](https://www.apple.com/iphone-14/)** _Midnight, 128GB_ diff --git a/package.json b/package.json index 467ebac9..d47efaf0 100644 --- a/package.json +++ b/package.json @@ -23,11 +23,11 @@ "lint:md": "markdownlint --config '.config/.markdownlint.json' --ignore-path .gitignore --dot './**/*.{md,markdown}'", "format": "prettier --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx,md,json,css,astro,yml}'", "deploy:s3": "./scripts/deploy-s3.sh", - "new": "ts-node --esm scripts/new/index.ts", - "create:icons": "ts-node --esm scripts/create-icons/index.ts", - "create:redirects": "ts-node --esm scripts/redirect-from.ts", + "new": "node --loader ts-node/esm scripts/new/index.ts", + "create:icons": "node --loader ts-node/esm scripts/create-icons/index.ts", + "create:redirects": "node --loader ts-node/esm scripts/redirect-from.ts", "create:symlinks": "./scripts/create-symlinks.sh", - "move:downloads": "ts-node --esm scripts/move-downloads.ts", + "move:downloads": "node --loader ts-node/esm scripts/move-downloads.ts", "prepare": "husky install .config/husky", "lint:staged": "lint-staged" }, diff --git a/src/features/Web3/components/Preview/Data.tsx b/src/features/Web3/components/Preview/Data.tsx index a5394c3d..4baac54f 100644 --- a/src/features/Web3/components/Preview/Data.tsx +++ b/src/features/Web3/components/Preview/Data.tsx @@ -35,8 +35,8 @@ export function Data({ selectedToken?.decimals === 18 ? formatEther(value as bigint) : selectedToken?.decimals - ? formatUnits(value as bigint, selectedToken.decimals) - : '0' + ? formatUnits(value as bigint, selectedToken.decimals) + : '0' return (