fix: add cache option no-cache to prevent caching
This commit is contained in:
parent
96d64e57bb
commit
3d55a98821
@ -4,7 +4,7 @@ export async function safeFetch(
|
|||||||
| { message: string; ok: false; response: Response }
|
| { message: string; ok: false; response: Response }
|
||||||
| { ok: true; response: Response }
|
| { ok: true; response: Response }
|
||||||
> {
|
> {
|
||||||
const response = await fetch(url);
|
const response = await fetch(url, { cache: "no-cache" });
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
return {
|
return {
|
||||||
ok: true,
|
ok: true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user