Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
fix: add request integration button back (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinsandilya authored Mar 13, 2024
1 parent 1e7ae4a commit 44c3a63
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions packages/client/src/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import AppsIcon from '@mui/icons-material/Apps';
import EqualizerIcon from '@mui/icons-material/Equalizer';
import HomeIcon from '@mui/icons-material/Home';
import OpenInNewIcon from '@mui/icons-material/OpenInNew';
import TaskIcon from '@mui/icons-material/Task';

import Onboarding from './onboarding';
import Integrations from './integrations';
Expand Down Expand Up @@ -160,6 +161,21 @@ const Home = () => {
<OpenInNewIcon />
<span className="p-2">Docs</span>
</li>
<li
className="p-2 cursor-pointer hover:border hover:border-[#d1d9f2] rounded-[8px] border-solid border-[1px] border-[#fff]"
style={tabValue === 3 ? selectedStyle : undefined}
onClick={() => {
var currentUrl = window.location.href;
window.open(
'https://discord.gg/q5K5cRhymW?utm_campaign=discord-ui&utm_medium=dashboard&utm_source=' +
currentUrl,
'_blank'
);
}}
>
<TaskIcon />
<span className="p-2">Request Integration</span>
</li>
</ul>
</div>
{renderTab(tabValue, handleChange, environment)}
Expand Down

0 comments on commit 44c3a63

Please sign in to comment.