diff --git a/packages/noodl-editor/src/editor/src/views/DeployPopup/DeployPopup.tsx b/packages/noodl-editor/src/editor/src/views/DeployPopup/DeployPopup.tsx
index ee6eebd..4d72b26 100644
--- a/packages/noodl-editor/src/editor/src/views/DeployPopup/DeployPopup.tsx
+++ b/packages/noodl-editor/src/editor/src/views/DeployPopup/DeployPopup.tsx
@@ -1,5 +1,6 @@
-import { usePluginContext } from '@noodl-contexts/PluginContext';
-import React, { RefObject, useEffect, useRef } from 'react';
+import React, { RefObject } from 'react';
+
+import { ProjectModel } from '@noodl-models/projectmodel';
import { ActivityIndicator } from '@noodl-core-ui/components/common/ActivityIndicator';
import { BaseDialog } from '@noodl-core-ui/components/layout/BaseDialog';
@@ -62,6 +63,19 @@ export function DeployPopup(props: DeployPopupProps) {
}
function FluxscapeDeployTab() {
- // Preview URL: 'http://192.168.0.33:8574/'
- return ;
+ const params = {};
+
+ const projectId = ProjectModel.instance.id;
+ if (projectId) {
+ params['projectId'] = projectId;
+ }
+
+ const urlParams = new URLSearchParams(params);
+
+ return (
+
+ );
}