wallabyjs / quokka

Repository for Quokka.js questions and issues
https://quokkajs.com
1.18k stars 31 forks source link

Clicking on codeclip icon doesn't do anything (quokka pro) #837

Closed mbaljeetsingh closed 2 years ago

mbaljeetsingh commented 2 years ago

Issue description or question

Is this issue related to Quokka not outputting the expected results of your code?: No

Sample code

const users = [
  {
    firstName: 'Leanne',
    lastName: 'Graham',
    email: 'Sincere@april.biz',
  },
  { firstName: 'Ervin', lastName: 'Howell', email: 'Shanna@melissa.tv' },
];

const formattedUsers = users.map((user) => ({
  name: `${user.firstName} ${user.lastName}`,
}));
console.log(formattedUsers);

Quokka.js Console Output

image

Code editor version

Visual Studio Code v1.73.1

OS name and version

OSX 13.0.1

NikGovorov commented 2 years ago

Could you please open developer tools (Developers: Toggle Developer Tools command), click the icon and share the output from the console here?

mbaljeetsingh commented 2 years ago
image

Nothing seems to be happening in console too when I click the icon

NikGovorov commented 2 years ago

Could you please check that Do Not Disturb Mode is disabled? On the screenshot below it's enabled:

image

smcenlly commented 2 years ago

Assuming from the 👍 in the comment above that this fixed your problem. Closing this issue.