@@ -86,7 +86,7 @@ function Toolbox({ Component, pageProps }: AppProps) {
86
86
css = { tw `text-white w-full md:px-8 p-2 md:h-14 flex flex-row text-white md:px-8 lg:px-12` }
87
87
>
88
88
< div css = { tw `flex flex-col md:flex-row w-full` } >
89
- < Link href = { "/" } passHref >
89
+ < Link href = { "/" } prefetch = { false } passHref >
90
90
< div css = { tw `flex flex-row hover:cursor-pointer m-4 md:m-0` } >
91
91
< div css = { tw `my-auto` } >
92
92
< FontAwesomeIcon icon = { faToolbox } size = { "2x" } />
@@ -123,7 +123,7 @@ function Toolbox({ Component, pageProps }: AppProps) {
123
123
${ ! navOpen && tw `overflow-hidden md:overflow-visible` }
124
124
` }
125
125
>
126
- < Link href = { "/" } passHref >
126
+ < Link href = { "/" } prefetch = { false } passHref >
127
127
< p
128
128
css = { tw `px-3 mx-2 py-2 my-auto md:ml-auto hover:cursor-pointer` }
129
129
>
@@ -132,13 +132,18 @@ function Toolbox({ Component, pageProps }: AppProps) {
132
132
</ Link >
133
133
< Link
134
134
href = { "https://www.spigotmc.org/members/helpchat.1491649/" }
135
+ prefetch = { false }
135
136
passHref
136
137
>
137
138
< p css = { tw `px-3 mx-2 py-2 my-auto hover:cursor-pointer` } >
138
139
Spigot
139
140
</ p >
140
141
</ Link >
141
- < Link href = { "https://github.com/HelpChat" } passHref >
142
+ < Link
143
+ href = { "https://github.com/HelpChat" }
144
+ prefetch = { false }
145
+ passHref
146
+ >
142
147
< p css = { tw `px-3 mx-2 py-2 my-auto hover:cursor-pointer` } >
143
148
Github
144
149
</ p >
@@ -167,7 +172,12 @@ function Toolbox({ Component, pageProps }: AppProps) {
167
172
if ( Array . isArray ( Tools [ key ] ) ) {
168
173
( Tools [ key ] as ToolboxTool [ ] ) . forEach ( ( tool ) => {
169
174
children . push (
170
- < Link href = { tool . link } key = { tool . short } passHref >
175
+ < Link
176
+ href = { tool . link }
177
+ prefetch = { false }
178
+ key = { tool . short }
179
+ passHref
180
+ >
171
181
< p
172
182
css = { tw `px-3 ml-2 pt-3 pb-1 hover:cursor-pointer hover:bg-gray-600` }
173
183
>
@@ -184,7 +194,12 @@ function Toolbox({ Component, pageProps }: AppProps) {
184
194
key1
185
195
] . forEach ( ( tool ) => {
186
196
children . push (
187
- < Link href = { tool . link } key = { tool . short } passHref >
197
+ < Link
198
+ href = { tool . link }
199
+ prefetch = { false }
200
+ key = { tool . short }
201
+ passHref
202
+ >
188
203
< p
189
204
css = { tw `px-3 ml-3 pt-3 pb-1 hover:cursor-pointer hover:bg-gray-600` }
190
205
>
@@ -219,7 +234,11 @@ function Toolbox({ Component, pageProps }: AppProps) {
219
234
} ) }
220
235
</ div >
221
236
</ div >
222
- < Link href = { "https://discord.gg/helpchat" } passHref >
237
+ < Link
238
+ href = { "https://discord.gg/helpchat" }
239
+ prefetch = { false }
240
+ passHref
241
+ >
223
242
< p
224
243
css = { tw `px-3 mx-2 py-2 my-auto hover:cursor-pointer hover:bg-gray-800 hover:text-white bg-white text-black rounded-md` }
225
244
>
0 commit comments