Skip to content

Commit

Permalink
ファイル名をより短い名前に変更
Browse files Browse the repository at this point in the history
  • Loading branch information
takusea committed Oct 22, 2024
1 parent 5071ebb commit f0136d0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/features/video-metadata/VideoAddForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { VideoMetadata } from "./type";
import {
parseUrlToTwitchMetadata,
parseUrlToYouTubeMetadata,
} from "./parseUrlToMetadata";
} from "./parseUrl";
import { TextField } from "../../components/TextField";
import { Button } from "../../components/Button";
import { IconPlus } from "@tabler/icons-react";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parseTimeToSeconds } from "../../util/timeFormatter";
import type { VideoMetadata } from "../video-metadata/type";
import type { VideoMetadata } from "./type";

export function parseUrlToYouTubeMetadata(url: string): VideoMetadata {
const query = url.includes("live")
Expand Down
2 changes: 1 addition & 1 deletion src/features/video-player/VideoPlayer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { VideoMetadata } from "../video-metadata/type";
import {
formatUrlFromTwitchMetadata,
formatUrlFromYouTubeMetadata,
} from "../video-metadata/formatUrlFromMetadata";
} from "../video-metadata/formatEmbedUrl";
import { VideoPlayerEditForm } from "./VideoPlayerEditForm";
import { Button } from "../../components/Button";
import {
Expand Down

0 comments on commit f0136d0

Please sign in to comment.