Comments removed

This commit is contained in:
Shaurya Sharma 2025-04-04 01:27:41 +05:30
parent 73f630668a
commit 2481bda0c8

View file

@ -40,7 +40,6 @@ export const createCodeHinterSlice = (set, get) => ({
const isServerSideGlobalEnabled = !!get()?.license?.featureAccess?.serverSideGlobal;
const serverHints = [];
const hints = get().getSuggestions();
console.log('isServerSideGlobalEnabled', isServerSideGlobalEnabled, 'isInsideQueryManager', isInsideQueryManager);
if (isInsideQueryManager && isServerSideGlobalEnabled) {
serverHints.push({ hint: 'globals.server', type: 'Object' });
hints?.appHints?.forEach((appHint) => {