Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
mdvanes committed Sep 27, 2024
1 parent 4fa23c8 commit 097469c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
10 changes: 8 additions & 2 deletions apps/client/src/Components/Molecules/Jukebox/HotKeyCoach.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,14 @@ const HotKeyCoach = () => {
<IconButton onClick={handleClick}>
<HelpIcon />
</IconButton>
{/* @ts-expect-error Popper needs to be updated */}
<Popper id="simple-popper" open={open} anchorEl={anchorEl}>
<Popper
id="simple-popper"
open={open}
anchorEl={anchorEl}
placeholder={undefined}
onPointerEnterCapture={undefined}
onPointerLeaveCapture={undefined}
>
<Box sx={{ p: 1, bgcolor: "background.paper" }}>
<List>
{hotKeyMapEntries.map(([k, v]) => {
Expand Down
1 change: 0 additions & 1 deletion apps/server/src/speedtest/speedtest.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export class SpeedtestController {
`http://192.168.0.8:8089/api/speedtest/latest`
);
const data = (await response.json()) as GetSpeedTestTrackerResponse;
console.log(data);

return data;
} catch (err) {
Expand Down

0 comments on commit 097469c

Please sign in to comment.