Skip to content

Commit

Permalink
fix(Process): 🐞 Process pair view sometimes disappear
Browse files Browse the repository at this point in the history
  • Loading branch information
bartoval committed Jul 26, 2023
1 parent d8d1c43 commit 3d6f346
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/pages/Processes/components/ProcessDescription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,12 @@ const ProcessDescription: FC<{ process: ProcessResponse; title: string | JSX.Ele
processBinding
} = process as ProcessResponse;

const { data: services } = useQuery([QueriesProcesses.GetAddressesByProcessId, identity], () =>
RESTApi.fetchAddressesByProcess(identity)
const { data: services } = useQuery(
[QueriesProcesses.GetAddressesByProcessId, identity],
() => RESTApi.fetchAddressesByProcess(identity),
{
keepPreviousData: true
}
);

return (
Expand Down

0 comments on commit 3d6f346

Please sign in to comment.