Skip to content

Commit

Permalink
fix: imports in wrong case
Browse files Browse the repository at this point in the history
  • Loading branch information
MAXOUXAX committed Mar 26, 2024
1 parent f4136fb commit 8e2f3e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backend/src/musicplatform/SoundCloud.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { JSONTrack } from "commons/Backend-types";
import { JSONTrack } from "commons/backend-types";
import Soundcloud, { SoundcloudTrackV2 } from "soundcloud.ts";
import Room from "../socketio/Room";
import MusicPlatform from "./MusicPlatform";
import { Remote } from "./remotes/Remote";
import SoundCloudRemote from "./remotes/SoundCloudRemote";
import Room from "../socketio/Room";

function extractFromTrack(track: SoundcloudTrackV2) {
const artists = track.user.username;
Expand Down
2 changes: 1 addition & 1 deletion expo/components/ActiveRoomView.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { MaterialIcons } from "@expo/vector-icons";
import { RoomJSON } from "commons/Backend-types";
import { RoomJSON } from "commons/backend-types";
import { Link, router } from "expo-router";
import { useEffect, useState } from "react";
import {
Expand Down

0 comments on commit 8e2f3e0

Please sign in to comment.