Pass /continue error to slash command executor

5489dd61a758e991196eedc8e1fb34293f328afc

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/slash-commands.js+1 -1
@@ -3027,7 +3027,7 @@ async function continueChatCallback(args, prompt) {
3027 resolve();3027 resolve();
3028 } catch (error) {3028 } catch (error) {
3029 console.error('Error running /continue command:', error);3029 console.error('Error running /continue command:', error);
3030 reject();3030 reject(error);
3031 }3031 }
3032 });3032 });
30333033