File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
pages/Dashboard/MachinesDetails Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -394,7 +394,7 @@ export function useCreateAndDeployApp() {
394394 await waitForAppScheduler ( appId , network )
395395 console . log ( 'deployed' , appId )
396396
397- toast . loading ( 'App is starting (~5min)' , { duration : 5 * 60 * 1000 } )
397+ toast ( 'App is starting (~5min)' , { duration : 5 * 60 * 1000 } )
398398 return appId
399399 } ,
400400 } )
@@ -473,7 +473,7 @@ export function useUpdateApp() {
473473 const hash = await restartMachine ( { machineId : machine . id , provider : machine . provider , network } )
474474 await waitForTransactionReceipt ( wagmiConfig , { hash } )
475475 }
476- toast . loading ( 'App is restarting (~1min)' , { duration : 1 * 60 * 1000 } )
476+ toast ( 'App is restarting (~1min)' , { duration : 1 * 60 * 1000 } )
477477 }
478478 return appId
479479 } ,
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ export const MachinesDetails: FC = () => {
8686 provider : machine . provider ,
8787 network,
8888 } )
89- toast . loading ( 'Machine is restarting (~1min)' , { duration : 1 * 60 * 1000 } )
89+ toast ( 'Machine is restarting (~1min)' , { duration : 1 * 60 * 1000 } )
9090 } }
9191 />
9292 < TabsList className = "w-full md:w-auto" >
You can’t perform that action at this time.
0 commit comments