@@ -155,7 +155,7 @@ export function TopBar({
155155 return (
156156 < >
157157 < div className = "flex gap-0 flex-col" >
158- < div className = "h-[3px]" > </ div >
158+ < div className = "h-[3px]" / >
159159 < div data-tauri-drag-region className = "flex gap-2 h-[38px] z-50" >
160160 < div
161161 className = "flex px-2 py-2 justify-around z-50"
@@ -168,7 +168,7 @@ export function TopBar({
168168 className = "flex justify-around flex-col select-all"
169169 data-tauri-drag-region
170170 >
171- < SlimeVRIcon > </ SlimeVRIcon >
171+ < SlimeVRIcon / >
172172 </ NavLink >
173173 ) }
174174 { ( isTauri || ! isMobile ) && ! config ?. decorations && (
@@ -181,7 +181,7 @@ export function TopBar({
181181 ) }
182182 { ( ! ( isMobile && ! config ?. decorations ) || showVersionMobile ) && (
183183 < >
184- < VersionTag > </ VersionTag >
184+ < VersionTag / >
185185 { doesMatchSettings && (
186186 < div
187187 className = { classNames (
@@ -206,7 +206,7 @@ export function TopBar({
206206 openUrl ( url ) . catch ( ( ) => window . open ( url , '_blank' ) ) ;
207207 } }
208208 >
209- < DownloadIcon > </ DownloadIcon >
209+ < DownloadIcon / >
210210 </ div >
211211 ) }
212212 </ div >
@@ -222,11 +222,7 @@ export function TopBar({
222222 data-tauri-drag-region
223223 >
224224 { progress !== undefined && (
225- < ProgressBar
226- progress = { progress }
227- height = { 3 }
228- parts = { 3 }
229- > </ ProgressBar >
225+ < ProgressBar progress = { progress } height = { 3 } parts = { 3 } />
230226 ) }
231227 </ div >
232228 </ >
@@ -256,7 +252,7 @@ export function TopBar({
256252 data-tauri-drag-region
257253 state = { { scrollTo : 'steamvr' } }
258254 >
259- < GearIcon > </ GearIcon >
255+ < GearIcon / >
260256 </ NavLink >
261257
262258 { ! isMobile && (
@@ -271,7 +267,7 @@ export function TopBar({
271267 )
272268 }
273269 >
274- < QuestionIcon > </ QuestionIcon >
270+ < QuestionIcon / >
275271 </ div >
276272 ) }
277273
@@ -281,27 +277,27 @@ export function TopBar({
281277 className = "flex items-center justify-center hover:bg-background-60 rounded-full w-7 h-7"
282278 onClick = { ( ) => getCurrentWindow ( ) . minimize ( ) }
283279 >
284- < MinimiseIcon > </ MinimiseIcon >
280+ < MinimiseIcon / >
285281 </ div >
286282 < div
287283 className = "flex items-center justify-center hover:bg-background-60 rounded-full w-7 h-7"
288284 onClick = { ( ) => getCurrentWindow ( ) . toggleMaximize ( ) }
289285 >
290- < MaximiseIcon > </ MaximiseIcon >
286+ < MaximiseIcon / >
291287 </ div >
292288 < div
293289 className = "flex items-center justify-center hover:bg-background-60 rounded-full w-7 h-7"
294290 onClick = { ( ) => tryCloseApp ( ) }
295291 >
296- < CloseIcon > </ CloseIcon >
292+ < CloseIcon / >
297293 </ div >
298294 </ >
299295 ) }
300296 </ div >
301297 </ div >
302298 { isMobile && progress !== undefined && (
303299 < div className = "flex gap-2 px-2 h-6 mb-2 justify-center flex-col border-b border-accent-background-30" >
304- < ProgressBar progress = { progress } height = { 3 } parts = { 3 } > </ ProgressBar >
300+ < ProgressBar progress = { progress } height = { 3 } parts = { 3 } / >
305301 </ div >
306302 ) }
307303 </ div >
@@ -335,7 +331,7 @@ export function TopBar({
335331 setConnectedTrackerWarning ( false ) ;
336332 getCurrentWindow ( ) . requestUserAttention ( null ) ;
337333 } }
338- > </ TrackersStillOnModal >
334+ / >
339335 < ErrorConsentModal
340336 isOpen = { config ?. errorTracking === null }
341337 accept = { ( ) => setConfig ( { errorTracking : true } ) }
0 commit comments