We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd69980 commit ac3500cCopy full SHA for ac3500c
app/wall/page.tsx
@@ -7,9 +7,13 @@ export default function WallDisplay() {
7
<main
8
className={`flex min-h-screen bg-white dark:bg-zinc-800 flex-col items-center justify-between`}
9
>
10
- {
11
- [...Array(10).keys()].map((key)=> <script src="https://cdn.delphitools.info/wp-content/uploads/2013/10/jsbat.js?1.2" key={key} />)
12
- }
+ {[...Array(10).keys()].map((key) => (
+ <script
+ defer
13
+ src="https://cdn.delphitools.info/wp-content/uploads/2013/10/jsbat.js?1.2"
14
+ key={key}
15
+ />
16
+ ))}
17
<section className="rounded-xl w-full md:px-0 md:w-11/12 my-2">
18
<div className="mx-auto ">
19
<div className="w-full mx-auto text-left flex justify-center items-center pb-8 px-8 dark:bg-zinc-900 rounded-xl">
0 commit comments