79366149

Date: 2025-01-17 21:38:54
Score: 1
Natty:
Report link

This issue occurred for me when I used imports/exports like this:

export { test } from './test';  
import { test } from '@/lib';

Having many similar patterns caused the error. Updating the import to:

import { test } from '@/lib/test';  

resolved the problem in my case.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bobbaru Krueger