Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace the livepeer API key #590

Merged
merged 11 commits into from
Jul 28, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export const ScheduledWidgetContent: React.FC<ScheduledWidgetContentProps> = ({
if (!spaceObjectData?.connectionData?.local?.stream || !isStarted) return;
console.log('SPACE STARTING');
await spacesObjectRef?.current?.start?.({
livepeerApiKey: '6d29b32d-78d4-4a5c-9848-a4a0669eb530',
livepeerApiKey: 'ac9d3e33-56c2-4a22-a328-a08a46fd9356',
});
console.log('SPACE STARTED');
setIsStarted(false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,6 @@ export const SpaceComponentWrapper = ({

usePushSpaceSocket({ account, env });

return <div>{children}</div>;
// eslint-disable-next-line react/jsx-no-useless-fragment
return <>{children}</>;
};
2 changes: 1 addition & 1 deletion packages/uiweb/src/lib/dataProviders/SpaceDataProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const SpacesUIProvider = ({

const livepeerClient = createReactClient({
provider: studioProvider({
apiKey: '6d29b32d-78d4-4a5c-9848-a4a0669eb530',
apiKey: 'ac9d3e33-56c2-4a22-a328-a08a46fd9356',
}),
});

Expand Down
Loading