downgrade yarn version 3 to 1
find location which yarn istalled
$ which yarn
/opt/homebrew/bin/yarn
remove yarn files
$sudo rm '/opt/homebrew/bin/yarn'
check yarnrc.yml
cat ~/.yarnrc.yml
yarnPath: ".yarn/releases/somethingPath.."
remove yarnrc.yml
$ rm -f ~/.yarnrc.yml
install specific yarn version
$ npm install -g 'yarn@1.22.1'
check installed version
$ yarn -v
1.22.10