Skip to content

Commit b16274e

Browse files
authored
fixed caching issue in overview page (#5330)
Signed-off-by: Lipsa <[email protected]>
1 parent 5f4fb5e commit b16274e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

chaoscenter/web/src/controllers/Overview/Overview.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ export default function OverviewController(): React.ReactElement {
1515
});
1616

1717
const { data: infraStats, loading: loadingInfraStats } = getInfraStats({
18-
...scope
18+
...scope,
19+
options: {
20+
fetchPolicy: 'network-only'
21+
}
1922
});
2023
const { data: experimentStats, loading: loadingExperimentStats } = getExperimentStats({
2124
...scope

0 commit comments

Comments
 (0)