Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 8b70937

Browse files
committed
Fix: response should not be local to try
1 parent f8e6ba3 commit 8b70937

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runestone/common/js/runestonebase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export default class RunestoneBase {
146146
}
147147
);
148148
try {
149-
let response = await fetch(request);
149+
var response = await fetch(request);
150150
if (!response.ok) {
151151
if (response.status === 422) {
152152
// Get details about why this is unprocesable.

0 commit comments

Comments
 (0)