Skip to content

Commit

Permalink
fix-session-id
Browse files Browse the repository at this point in the history
  • Loading branch information
saithsab877 committed Dec 5, 2024
1 parent 588280e commit 9902803
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/common/TicketEditor/TicketEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const TicketEditor = ({ ticketData, websocketSessionId }: TicketEditorProps) =>
const ticketPayload = {
metadata: {
source: 'websocket',
id: ticketData.uuid
id: websocketSessionId
},
ticket: {
...ticketData,
Expand Down
2 changes: 1 addition & 1 deletion src/people/widgetViews/PhasePlannerView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ const PhasePlannerView: React.FC = () => {
const ticketPayload = {
metadata: {
source: 'websocket',
id: initialTicketData.uuid
id: websocketSessionId
},
ticket: initialTicketData
};
Expand Down

0 comments on commit 9902803

Please sign in to comment.