Chat recently started to have lots of syntax errors

The chat responses with code have begun leaving out brackets, characters, etc. randomly throughout the code blocks. An example response:

import React from 'react';
mport { createRoot } from 'react-dom/client';
mport { Provider } from 'react-redux';
mport { store } from './store';
mport App from './App';
mport './index.css';
const container = document.getElementById('root');
onst root = createRoot(container);
root.render(
 <React.StrictMode>
   <Provider store={store}>
     <App />
   </Provider>
 </React.StrictMode>
;

It will leave off the first character, such as the ā€œiā€ in import, the ā€œcā€ in const, and also not have closing brackets. My first few weeks of using Cursor this never happened, but in the last week it has been happening in nearly every code block response, regardless of programming language or model chosen. So far, I have noticed it in Java, Go, and Javascript/Typescript using both Claude and GPT-4o.

what version of Cursor are you on? And what operating system?

Hello - here is the snapshot of the settings:

Version: 0.43.1
VSCode Version: 1.93.1
Commit: 5ea53fca4187f123b8adc8f4cea37382b97b6880
Date: 2024-11-24T08:57:46.282Z
Electron: 30.5.1
Chromium: 124.0.6367.243
Node.js: 20.16.0
V8: 12.4.254.20-electron.0
OS: Windows_NT x64 10.0.22631

My OS is Microsoft Windows 11 Home version 10.0.22631 Build 22631

Could you try upgrading:

ctrl+shift+p > attempt update

I ran the update and so far I have not had the issue; seems to be resolved.