We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 488b07d commit 2abce74Copy full SHA for 2abce74
1 file changed
apps/web/ui/partners/partner-info-cards.tsx
@@ -246,12 +246,16 @@ export function PartnerInfoCards({
246
247
<div className="border-border-subtle flex flex-col gap-4 rounded-xl border p-4">
248
<h2 className="text-content-emphasis text-sm font-semibold">
249
- Organization
+ {isEnrolled ? "Organization" : "Invite group"}
250
</h2>
251
252
{/* Group */}
253
<div className="flex flex-col gap-2">
254
- <h3 className="text-content-emphasis text-xs font-semibold">Group</h3>
+ {isEnrolled && (
255
+ <h3 className="text-content-emphasis text-xs font-semibold">
256
+ Group
257
+ </h3>
258
+ )}
259
{partner ? (
260
<PartnerInfoGroup
261
partner={partner}
0 commit comments