Skip to content

Commit

Permalink
Replace the livepeer API key (#590)
Browse files Browse the repository at this point in the history
* refactor: added space socket instance in context itself

* fix: resolved socket multiple instances getting created

* fix: role indicator, add raise hand (#576)

* fix: fix members modal, add requestMic

* fix: add useEffect for raiseRequest

* feat: add acc rej UI

* feat: add invite to listener

* fix: rm raisedhand export

* fix: fix members modal, add requestMic

* fix: add useEffect for raiseRequest

* feat: add acc rej UI

* feat: add invite to listener

* fix: rm raisedhand export

* feat(spaces): add functions to handle meta messages

* fix(spaces): bug fix in raise hand handler

* feat: added listener mgmt UI

* fix(spaces): display roles from live space data

---------

Co-authored-by: Madhur Gupta <madhur@push.org>

* fix: removed validateScheduleDates in update group. backend will handle this

* refactor: resolved getSpaceInfo hook issue

* rft: add raise hand (#586)

* feat: raised hand

* fix: accept fix

* fix(spaces): fix hand raised

* fix: add requests icon

* fix(spaces): remove UI peices

---------

Co-authored-by: Madhur Gupta <madhur@push.org>

* fix: width issue (#588)

* fix: fix width issue

* feat: eslint fix

* chore: eslint

* fix(spaces): replace livepeer api key

---------

Co-authored-by: Nilesh Gupta <guptanilesh2312@gmail.com>
Co-authored-by: Arnab Chatterjee <60937304+arn4b@users.noreply.github.com>
Co-authored-by: Mohammed S <shoaibmohammed92@gmail.com>
  • Loading branch information
4 people authored Jul 28, 2023
1 parent c04b2c3 commit 5185edb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
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

0 comments on commit 5185edb

Please sign in to comment.