diff --git a/src/app/sandbox/deploy/LeftSection.tsx b/src/app/sandbox/deploy/LeftSection.tsx
index 14b0fe4da..d9c591d8b 100644
--- a/src/app/sandbox/deploy/LeftSection.tsx
+++ b/src/app/sandbox/deploy/LeftSection.tsx
@@ -8,6 +8,7 @@ import React, { FC, useState } from 'react';
import { RiCloseLine } from 'react-icons/ri';
import { TbTools } from 'react-icons/tb';
import { useQueryClient } from '@tanstack/react-query';
+import { FiExternalLink } from 'react-icons/fi';
import { openContractDeploy } from '@stacks/connect';
@@ -57,7 +58,7 @@ export const LeftSection: FC = () => {
pr="84px"
color={'textBody'}
/>
-
+
{
@@ -68,8 +69,6 @@ export const LeftSection: FC = () => {
size={'30px'}
/>
-
-
dispatch(toggleCodeToolbar())}>
{
/>
+
+
+
+ }
+ onClick={() => {
+ const paramsBase64 = { name: contractName, sourceCode: codeBody };
+ const state = btoa(JSON.stringify(paramsBase64));
+
+ // 'state' param is used by Auth0 to forward the params after the login portal
+ window.open(`https://platform.hiro.so/projects/import?state=${state}`);
+ }}
+ width="100%"
+ >
+ Save Project to Hiro Platform
+
+
>
);
};