File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -325,7 +325,7 @@ export const handleStandardTransfer = async (
325325} ;
326326
327327export const fetchLocalnetTomlConfig = async ( ) : Promise < LocalnetToml > => {
328- const response = await fetch ( "/localnet-config.toml" ) ;
328+ const response = await fetch ( "/localnet-config.toml" , { cache : "no-store" } ) ;
329329 return toml . parse ( await response . text ( ) ) as LocalnetToml ;
330330} ;
331331
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export const isRpcAlive = async (url: string): Promise<boolean> => {
7070
7171export const fetchDefaultTomlConfig =
7272 async ( ) : Promise < SettingsTomlOptions > => {
73- const response = await fetch ( "/config.toml" ) ;
73+ const response = await fetch ( "/config.toml" , { cache : "no-store" } ) ;
7474 return toml . parse ( await response . text ( ) ) as SettingsTomlOptions ;
7575 } ;
7676
You can’t perform that action at this time.
0 commit comments