While running pnpm run lint:fix I'm getting tsdoc errors. I didn't modify anything and these errors were already present.
Am I doing something wrong or is there any step which I have to do before running that command?
@pavanydg
these are TSDoc linting errors, not TypeScript/runtime issues.
they come from invalid JSDoc-style tags (like @property or malformed {}) which TSDoc doesn’t support.
the react-toastify error is separate — direct imports are restricted and the project requires using the NotificationToast wrapper component instead.
import { NotificationToast } from 'src/components/NotificationToast';