File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export const LongMenu = () => {
26
26
27
27
return (
28
28
< div >
29
- < UpdateDialog open = { openModal } onClose = { ( ) => setOpenModal ( false ) } />
29
+ { openModal && < UpdateDialog open = { openModal } onClose = { ( ) => setOpenModal ( false ) } /> }
30
30
< IconButton
31
31
aria-label = "more"
32
32
id = "long-button"
Original file line number Diff line number Diff line change @@ -59,7 +59,10 @@ export const useLocalStack = (): useLocalStackReturn => {
59
59
const { data, mutate } = useSWR (
60
60
cacheKey ,
61
61
async ( ) => ( await ddClient . docker . listContainers ( ) as [ DockerContainer ] )
62
- . find ( container => container . Image === 'localstack/localstack' ) ,
62
+ . find ( container =>
63
+ container . Image === 'localstack/localstack' &&
64
+ container . Command !== 'bin/localstack update docker-images' ,
65
+ ) ,
63
66
) ;
64
67
65
68
return {
You can’t perform that action at this time.
0 commit comments