Skip to content

Commit

Permalink
Reactivate gong labs provider (#6499)
Browse files Browse the repository at this point in the history
* Reactivate gong

* Lint
  • Loading branch information
albandum authored Jul 25, 2024
1 parent ab67055 commit 64a995b
Showing 1 changed file with 13 additions and 16 deletions.
29 changes: 13 additions & 16 deletions front/pages/w/[wId]/assistant/labs/transcripts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {
Page,
SliderToggle,
Spinner,
Tooltip,
XMarkIcon,
} from "@dust-tt/sparkle";
import type { SubscriptionType } from "@dust-tt/types";
Expand Down Expand Up @@ -443,21 +442,19 @@ export default function LabsTranscriptsIndex({
style={{ maxHeight: "35px" }}
/>
</div>
<Tooltip label="Gong is under maintenance, check back soon.">
<div
className={`cursor-pointer rounded-md border p-4 ${
transcriptsConfigurationState.provider == "gong"
? "border-gray-400"
: "border-gray-200"
}`}
// onClick={() => handleProviderChange("gong")}
>
<img
src="/static/labs/transcripts/gong.jpeg"
style={{ maxHeight: "35px" }}
/>
</div>
</Tooltip>
<div
className={`cursor-pointer rounded-md border p-4 hover:border-gray-400 ${
transcriptsConfigurationState.provider == "gong"
? "border-gray-400"
: "border-gray-200"
}`}
onClick={() => handleProviderChange("gong")}
>
<img
src="/static/labs/transcripts/gong.jpeg"
style={{ maxHeight: "35px" }}
/>
</div>
</Page.Layout>
)}

Expand Down

0 comments on commit 64a995b

Please sign in to comment.