Skip to content

Commit

Permalink
?の除去
Browse files Browse the repository at this point in the history
  • Loading branch information
kounoike committed Apr 30, 2023
1 parent 629a252 commit d7841dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/app/recorded/mp4/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { useEffect, useState } from "react"
export default function SearchPage() {
const [mp4Path, setMp4Path] = useState<string | undefined>(undefined)
useEffect(() => {
setMp4Path(window.location.search)
setMp4Path(window.location.search.slice(1))
}, [])

return mp4Path === undefined ? (
Expand Down

0 comments on commit d7841dc

Please sign in to comment.