File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed
hosting/oisy-signer-demo/frontend Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 2424 "react-dom" : " ~19.2.4"
2525 },
2626 "devDependencies" : {
27- "@eslint/js" : " ~9.32.0 " ,
27+ "@eslint/js" : " ~9.39.3 " ,
2828 "@vitejs/plugin-react" : " ~5.1.4" ,
2929 "autoprefixer" : " ~10.4.24" ,
30- "eslint" : " ~9.32.0 " ,
30+ "eslint" : " ~9.39.3 " ,
3131 "eslint-config-prettier" : " ~10.1.8" ,
3232 "eslint-plugin-react" : " ~7.37.5" ,
33- "eslint-plugin-react-hooks" : " ~5.2.0 " ,
34- "eslint-plugin-react-refresh" : " ~0.4.20 " ,
33+ "eslint-plugin-react-hooks" : " ~7.0.1 " ,
34+ "eslint-plugin-react-refresh" : " ~0.5.2 " ,
3535 "globals" : " ~17.3.0" ,
3636 "postcss" : " ~8.5.6" ,
3737 "prettier" : " ~3.8.1" ,
3838 "prettier-plugin-tailwindcss" : " ~0.7.2" ,
39- "tailwindcss" : " ~3.4.19" ,
39+ "tailwindcss" : " ~4.2.1" ,
40+ "@tailwindcss/postcss" : " ^4.2.1" ,
4041 "vite" : " ~7.3.1"
4142 }
4243}
Original file line number Diff line number Diff line change 11export default {
22 plugins : {
3- tailwindcss : { } ,
4- autoprefixer : { } ,
3+ "@tailwindcss/postcss" : { } ,
54 } ,
65} ;
Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ export default function App() {
208208 </ div >
209209 < div className = "text-sm" >
210210 Balance:{ ' ' }
211- { testIcpBalance && testIcpMetadata
211+ { testIcpBalance != null && testIcpMetadata
212212 ? toMainUnit ( testIcpBalance , testIcpMetadata . decimals )
213213 : '...' }
214214 </ div >
@@ -236,7 +236,7 @@ export default function App() {
236236 </ div >
237237 < div className = "text-sm" >
238238 Balance:{ ' ' }
239- { tIcrc1Balance && tIcrc1Metadata
239+ { tIcrc1Balance != null && tIcrc1Metadata
240240 ? toMainUnit ( tIcrc1Balance , tIcrc1Metadata . decimals )
241241 : '...' }
242242 </ div >
Original file line number Diff line number Diff line change 1- @tailwind base ;
2- @tailwind components;
3- @tailwind utilities ;
1+ @import "tailwindcss" ;
2+
3+ @custom-variant dark ( & : where (. dark , . dark * )) ;
You can’t perform that action at this time.
0 commit comments