fix(editor): Remove n8nHooksNext flag (no-changelog) (#7733)

Hooks won't be injected anymore
https://github.com/n8n-io/n8n-hosted-backend/pull/816
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-11-17 14:44:28 +01:00
committed by GitHub
parent 44d3b3ed7e
commit b66b8c18e9
3 changed files with 0 additions and 4 deletions

View File

@@ -1 +0,0 @@
window.n8nHooksNext = true;

View File

@@ -11,8 +11,6 @@ import '@fontsource/open-sans/latin-400.css';
import '@fontsource/open-sans/latin-600.css';
import '@fontsource/open-sans/latin-700.css';
import './hooks/init';
import App from '@/App.vue';
import router from './router';

View File

@@ -20,7 +20,6 @@ declare global {
interface Window {
BASE_PATH: string;
REST_ENDPOINT: string;
n8nHooksNext: boolean;
n8nExternalHooks?: PartialDeep<ExternalHooks>;
}