You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Trying to update the system prompt in Settings/AI/Ai post processing. Was attempting to add more text to the current prompt, but as soon as I've typed in a certain number of characters the site crashes and needs reloading.
Getting the error:
Application error: a client-side exception has occurred while loading notes.brisflix.com (see the browser console for more information).
To Reproduce
Steps to reproduce the behavior:
Go to settings/AI/AI post processing and add to the prompts, after about 30 or so characters the website will crash.
Expected behavior
Expected it to take more text and save the prompt
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
OS: Unraid container
Browser chrome
Version latest
Additional context
Console logs below...
router.query Object
_app-221b2428cbe9b5c9.js:235 router.query Object
_app-221b2428cbe9b5c9.js:234 Array(12) 'listTags'
_app-221b2428cbe9b5c9.js:188 An aria-label or aria-labelledby prop is required for accessibility.
(anonymous) @ _app-221b2428cbe9b5c9.js:188Understand this warning
_app-221b2428cbe9b5c9.js:4 If you do not provide a visible label, you must specify an aria-label or aria-labelledby attribute for accessibility
a @ _app-221b2428cbe9b5c9.js:4Understand this warning
2_app-221b2428cbe9b5c9.js:188 An aria-label or aria-labelledby prop is required for accessibility.
(anonymous) @ _app-221b2428cbe9b5c9.js:188Understand this warning
3_app-221b2428cbe9b5c9.js:4 If you do not provide a visible label, you must specify an aria-label or aria-labelledby attribute for accessibility
a @ _app-221b2428cbe9b5c9.js:4Understand this warning
3_app-221b2428cbe9b5c9.js:1698 WARN: A component changed from controlled to uncontrolled.
(anonymous) @ _app-221b2428cbe9b5c9.js:1698Understand this warning
2_app-221b2428cbe9b5c9.js:4 If you do not provide a visible label, you must specify an aria-label or aria-labelledby attribute for accessibility
a @ _app-221b2428cbe9b5c9.js:4Understand this warning
settings:1 [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) null
_app-221b2428cbe9b5c9.js:188 An aria-label or aria-labelledby prop is required for accessibility.
(anonymous) @ _app-221b2428cbe9b5c9.js:188Understand this warning
39_app-221b2428cbe9b5c9.js:4 If you do not provide a visible label, you must specify an aria-label or aria-labelledby attribute for accessibility
a @ _app-221b2428cbe9b5c9.js:4Understand this warning
2_app-221b2428cbe9b5c9.js:466 Error: Minified React error #185; visit https://reactjs.org/docs/error-decoder.html?invariant=185 for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
at ob (framework-3a77a74763091cf6.js:1:99356)
at aB (framework-3a77a74763091cf6.js:1:70469)
at onHeightChange (_app-221b2428cbe9b5c9.js:188:749848)
at N (app-221b2428cbe9b5c9.js:188:748719)
at uD (framework-3a77a74763091cf6.js:1:90793)
at uK (framework-3a77a74763091cf6.js:1:97173)
at e (framework-3a77a74763091cf6.js:1:117778)
at framework-3a77a74763091cf6.js:1:117789
at oD (framework-3a77a74763091cf6.js:1:118301)
at o (framework-3a77a74763091cf6.js:1:102921)
at r4 (framework-3a77a74763091cf6.js:1:51575)
at oP (framework-3a77a74763091cf6.js:1:103223)
at eM (framework-3a77a74763091cf6.js:1:20854)
at ru (framework-3a77a74763091cf6.js:1:41938)
at nI (framework-3a77a74763091cf6.js:1:27606)
at nO (framework-3a77a74763091cf6.js:1:27390)
console.error @ _app-221b2428cbe9b5c9.js:466Understand this error
_app-221b2428cbe9b5c9.js:466 A client-side exception has occurred, see here for more info: https://nextjs.org/docs/messages/client-side-exception-occurred
console.error @ _app-221b2428cbe9b5c9.js:466Understand this error
_app-221b2428cbe9b5c9.js:466 Element with ID 'page-wrap' not found
console.error @ _app-221b2428cbe9b5c9.js:466Understand this error
_app-221b2428cbe9b5c9.js:466 Element with ID 'outer-container' not found
console.error @ _app-221b2428cbe9b5c9.js:466Understand this error
_app-221b2428cbe9b5c9.js:235 router.query Object
_app-221b2428cbe9b5c9.js:235 router.query Object
_app-221b2428cbe9b5c9.js:234 Array(12) 'listTags'
The text was updated successfully, but these errors were encountered:
The issue you're experiencing seems to be related to a client-side exception that occurs when editing the system prompt in the AI post-processing settings. This crash might be due to exceeding a character limit or an infinite loop caused by state updates.
Here are a few steps you can take to address this issue:
Check for Character Limits: Although I couldn't find specific information about a character limit for the system prompt input field, it's possible that there is an implicit limit causing the crash. Try reducing the input length to see if it prevents the crash.
Error Boundaries: Implementing error boundaries around the component responsible for editing the system prompt can help catch and handle errors gracefully, preventing the application from crashing. This is especially useful for managing client-side exceptions.
Debugging: Use the non-minified development build of React to get more detailed error messages. This can help identify the exact cause of the crash, such as a component switching from controlled to uncontrolled, which is mentioned in your console logs.
Console Warnings: Address any accessibility warnings related to aria-label or aria-labelledby attributes, as these might be contributing to the issue.
By following these steps, you should be able to mitigate the crash and improve the stability of the application when editing system prompts.
Describe the bug
Trying to update the system prompt in Settings/AI/Ai post processing. Was attempting to add more text to the current prompt, but as soon as I've typed in a certain number of characters the site crashes and needs reloading.
Getting the error:
Application error: a client-side exception has occurred while loading notes.brisflix.com (see the browser console for more information).
To Reproduce
Steps to reproduce the behavior:
Go to settings/AI/AI post processing and add to the prompts, after about 30 or so characters the website will crash.
Expected behavior
Expected it to take more text and save the prompt
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context
Console logs below...
router.query Object
_app-221b2428cbe9b5c9.js:235 router.query Object
_app-221b2428cbe9b5c9.js:234 Array(12) 'listTags'
_app-221b2428cbe9b5c9.js:188 An aria-label or aria-labelledby prop is required for accessibility.
(anonymous) @ _app-221b2428cbe9b5c9.js:188Understand this warning
_app-221b2428cbe9b5c9.js:4 If you do not provide a visible label, you must specify an aria-label or aria-labelledby attribute for accessibility
a @ _app-221b2428cbe9b5c9.js:4Understand this warning
2_app-221b2428cbe9b5c9.js:188 An aria-label or aria-labelledby prop is required for accessibility.
(anonymous) @ _app-221b2428cbe9b5c9.js:188Understand this warning
3_app-221b2428cbe9b5c9.js:4 If you do not provide a visible label, you must specify an aria-label or aria-labelledby attribute for accessibility
a @ _app-221b2428cbe9b5c9.js:4Understand this warning
3_app-221b2428cbe9b5c9.js:1698 WARN: A component changed from controlled to uncontrolled.
(anonymous) @ _app-221b2428cbe9b5c9.js:1698Understand this warning
2_app-221b2428cbe9b5c9.js:4 If you do not provide a visible label, you must specify an aria-label or aria-labelledby attribute for accessibility
a @ _app-221b2428cbe9b5c9.js:4Understand this warning
settings:1 [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) null
_app-221b2428cbe9b5c9.js:188 An aria-label or aria-labelledby prop is required for accessibility.
(anonymous) @ _app-221b2428cbe9b5c9.js:188Understand this warning
39_app-221b2428cbe9b5c9.js:4 If you do not provide a visible label, you must specify an aria-label or aria-labelledby attribute for accessibility
a @ _app-221b2428cbe9b5c9.js:4Understand this warning
2_app-221b2428cbe9b5c9.js:466 Error: Minified React error #185; visit https://reactjs.org/docs/error-decoder.html?invariant=185 for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
at ob (framework-3a77a74763091cf6.js:1:99356)
at aB (framework-3a77a74763091cf6.js:1:70469)
at onHeightChange (_app-221b2428cbe9b5c9.js:188:749848)
at N (app-221b2428cbe9b5c9.js:188:748719)
at uD (framework-3a77a74763091cf6.js:1:90793)
at uK (framework-3a77a74763091cf6.js:1:97173)
at e (framework-3a77a74763091cf6.js:1:117778)
at framework-3a77a74763091cf6.js:1:117789
at oD (framework-3a77a74763091cf6.js:1:118301)
at o (framework-3a77a74763091cf6.js:1:102921)
at r4 (framework-3a77a74763091cf6.js:1:51575)
at oP (framework-3a77a74763091cf6.js:1:103223)
at eM (framework-3a77a74763091cf6.js:1:20854)
at ru (framework-3a77a74763091cf6.js:1:41938)
at nI (framework-3a77a74763091cf6.js:1:27606)
at nO (framework-3a77a74763091cf6.js:1:27390)
console.error @ _app-221b2428cbe9b5c9.js:466Understand this error
_app-221b2428cbe9b5c9.js:466 A client-side exception has occurred, see here for more info: https://nextjs.org/docs/messages/client-side-exception-occurred
console.error @ _app-221b2428cbe9b5c9.js:466Understand this error
_app-221b2428cbe9b5c9.js:466 Element with ID 'page-wrap' not found
console.error @ _app-221b2428cbe9b5c9.js:466Understand this error
_app-221b2428cbe9b5c9.js:466 Element with ID 'outer-container' not found
console.error @ _app-221b2428cbe9b5c9.js:466Understand this error
_app-221b2428cbe9b5c9.js:235 router.query Object
_app-221b2428cbe9b5c9.js:235 router.query Object
_app-221b2428cbe9b5c9.js:234 Array(12) 'listTags'
The text was updated successfully, but these errors were encountered: