After making a recent push to my production plugin, I’m seeing this error even though it IS defined in my manifest.
1Error: in get_currentUser: "currentuser" permission not specified in manifest.json. Add the following to your manifest.json: "permissions": ["currentuser"]. See https://www.figma.com/plugin-docs/manifest/#permissions for more details.2
manifest.json
1{2 "name": MY_NAME,3 "id": MY_ID,4 "api": "1.0.0",5 "main": "dist/code.cjs",6 "enableProposedApi": false,7 "enablePrivatePluginApi": true,8 "editorType": ["figma", "figjam"],9 "permissions": ["currentuser"],10 "networkAccess": {11 "allowedDomains": ["*"],12 "reasoning": "Internet access for local development."13 }14}1516