Skip to content

Commit

Permalink
fix: fix subscription path for user notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-s committed Sep 25, 2024
1 parent 44f4957 commit bbb735f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contexts/StompContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export const StompContextProvider = (props: StompContextProviderParams) => {
stompClientRef.current.onConnect = frame => {
console.log('successfully connected to stomp');
const subscription = stompClientRef.current?.subscribe(
'/user/runs',
'/user/notifications/runs',
messageCallback
);
};
Expand Down

0 comments on commit bbb735f

Please sign in to comment.