We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
create new playground uses the method 'use' which in a react project throws an error as use can only be used inside of a react hook
unable to start playground
use(yourDb);
don't use the function keyword 'use'
Version: 1.97.2 Commit: e54c774e0add60467559eb0d1e229c6452cf8447 Date: 2025-02-12T23:20:35.343Z Electron: 32.2.7 ElectronBuildId: 10982180 Chromium: 128.0.6613.186 Node.js: 20.18.1 V8: 12.8.374.38-electron.0 OS: Linux x64 6.12.13-200.fc41.x86_64
to fix github co-pilot solved for me by replacing use with db.getSiblingDB(yourDB)
use
db.getSiblingDB(yourDB)