Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Hacksore committed Jul 28, 2024
1 parent 180b5f7 commit f981bdb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions apps/desktop/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ function App() {

<Button
onClick={async () => {

const allSounds = await socket?.getSoundBoardItems();
console.log({ allSounds })
console.log({ allSounds });

// play ahh
socket?.send({
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/rpc/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ class SocketManager {
if (payload.evt === RPCEvent.VOICE_STATE_UPDATE) {
this.store.updateUser(payload.data);
}

if (payload.cmd === RPCCommand.GET_SOUNDBOARD_SOUNDS) {
// update the Promise
this.soundBoardItemsResolver.resolve(payload.data);
Expand Down

0 comments on commit f981bdb

Please sign in to comment.