Pass /continue error to slash command executor
| @@ -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 | }); |
| 3033 | 3033 | ||