aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/UpdateNotification.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2023-03-31 17:01:08 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2023-03-31 17:07:04 +0200
commit8a7bc8885f3afea425b1f236a5ca8cef513b03cf (patch)
treeaf1bbad524a1459a2e0096c88232513fb5b055da /subprojects/frontend/src/UpdateNotification.tsx
parentfeat: terms and improved query evaluation (diff)
downloadrefinery-8a7bc8885f3afea425b1f236a5ca8cef513b03cf.tar.gz
refinery-8a7bc8885f3afea425b1f236a5ca8cef513b03cf.tar.zst
refinery-8a7bc8885f3afea425b1f236a5ca8cef513b03cf.zip
chore(deps): bump dependencies
Diffstat (limited to 'subprojects/frontend/src/UpdateNotification.tsx')
-rw-r--r--subprojects/frontend/src/UpdateNotification.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/subprojects/frontend/src/UpdateNotification.tsx b/subprojects/frontend/src/UpdateNotification.tsx
index 07f7f5f7..5c8c2d01 100644
--- a/subprojects/frontend/src/UpdateNotification.tsx
+++ b/subprojects/frontend/src/UpdateNotification.tsx
@@ -32,14 +32,14 @@ export default observer(function UpdateNotification(): null {
32 return enqueueLater('Failed to download update', { 32 return enqueueLater('Failed to download update', {
33 variant: 'error', 33 variant: 'error',
34 action: ( 34 action: (
35 <> 35 <ContrastThemeProvider>
36 <Button color="inherit" onClick={() => pwaStore.checkForUpdates()}> 36 <Button color="inherit" onClick={() => pwaStore.checkForUpdates()}>
37 Try again 37 Try again
38 </Button> 38 </Button>
39 <Button color="inherit" onClick={() => pwaStore.dismissError()}> 39 <Button color="inherit" onClick={() => pwaStore.dismissError()}>
40 Dismiss 40 Dismiss
41 </Button> 41 </Button>
42 </> 42 </ContrastThemeProvider>
43 ), 43 ),
44 }); 44 });
45 } 45 }