diff --git a/packages/client/components/ActivityLibrary/ActivityGrid.tsx b/packages/client/components/ActivityLibrary/ActivityGrid.tsx
index 75142ebdcdc..dbfbbbe9f66 100644
--- a/packages/client/components/ActivityLibrary/ActivityGrid.tsx
+++ b/packages/client/components/ActivityLibrary/ActivityGrid.tsx
@@ -1,5 +1,6 @@
import React from 'react'
import {Link} from 'react-router-dom'
+import {ActivityBadge} from './ActivityBadge'
import {ActivityCard, ActivityCardImage} from './ActivityCard'
import {Template} from './ActivityLibrary'
import {ActivityLibraryCardDescription} from './ActivityLibraryCardDescription'
@@ -30,6 +31,11 @@ const ActivityGrid = ({templates, selectedCategory}: ActivityGridProps) => {
title={template.name}
type={template.type}
templateRef={template}
+ badge={
+ template.scope !== 'PUBLIC' ? (
+ Custom
+ ) : null
+ }
>
{
name
category
illustrationUrl
- isFree
+ scope
}
`,
templateRef
@@ -53,6 +54,11 @@ const RetroDrawerTemplateCard = (props: Props) => {
theme={CATEGORY_THEMES[template.category as CategoryID]}
title={template.name}
type='retrospective'
+ badge={
+ template.scope !== 'PUBLIC' ? (
+ Custom
+ ) : null
+ }
>