Live video on the AT Protocol
79
fork

Configure Feed

Select the types of activity you want to include in your feed.

components: add some relative paths

authored by

Eli Mallon and committed by
Natalie B.
527ceac9 08729c04

+4 -3
+1 -1
js/components/src/hooks/useCameraToggle.ts
··· 1 - import { usePlayerStore } from "@streamplace/components"; 1 + import { usePlayerStore } from "../player-store"; 2 2 3 3 export function useCameraToggle() { 4 4 const ingestCamera = usePlayerStore((x) => x.ingestCamera);
+2 -1
js/components/src/hooks/useLivestreamInfo.ts
··· 1 - import { useLivestreamStore, usePlayerStore } from "@streamplace/components"; 2 1 import { useState } from "react"; 2 + import { useLivestreamStore } from "../livestream-store"; 3 + import { usePlayerStore } from "../player-store"; 3 4 import { useCreateStreamRecord } from "../streamplace-store"; 4 5 5 6 export function useLivestreamInfo() {
+1 -1
js/components/src/hooks/useSegmentTiming.tsx
··· 1 - import { useLivestreamStore } from "@streamplace/components"; 2 1 import { useEffect, useRef, useState } from "react"; 2 + import { useLivestreamStore } from "../livestream-store"; 3 3 4 4 export type ConnectionQuality = "good" | "degraded" | "poor"; 5 5