diff --git a/front/views/PlayView.tsx b/front/views/PlayView.tsx index 9dc0c9d..eac110a 100644 --- a/front/views/PlayView.tsx +++ b/front/views/PlayView.tsx @@ -67,13 +67,6 @@ function parseMidiMessage(message: MIDIMessageEvent) { }; } -export const PartitionContext = React.createContext<{ - // Timestamp of the play session, in milisecond - timestamp: number; -}>({ - timestamp: 0, -}); - const PlayView = ({ songId, type, route }: RouteProps) => { const accessToken = useSelector((state: RootState) => state.user.accessToken); const navigation = useNavigation();