Skip to content
This repository was archived by the owner on Aug 10, 2025. It is now read-only.

Commit fdc9ecd

Browse files
committed
Extend explanation for possible unauthenticated request
1 parent f4fc6a3 commit fdc9ecd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/Editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export default function Editor({ path }: { path: string }) {
7676
const result = await axios.post(path, { code });
7777
setOutput(result.data);
7878
} catch (error) {
79-
setOutput(`Error executing code: ${(error as Error).message}`);
79+
setOutput(`Error executing code: ${(error as Error).message} - Please make sure you're logged in.`);
8080
console.error('Error executing code:', error);
8181
} finally {
8282
setLoading(false);

0 commit comments

Comments
 (0)