forked from AkkomaGang/akkoma-fe
After Store: Correctly handle preloaded HTML
This commit is contained in:
parent
9ccc6174a7
commit
1f97f36e1c
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ const preloadFetch = async (request) => {
|
|||
return {
|
||||
ok: true,
|
||||
json: () => JSON.parse(requestData),
|
||||
text: () => requestData
|
||||
text: () => JSON.parse(requestData)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue