Skip to content

Commit ada2343

Browse files
committed
chore(dashboard): allow dev Abilities
1 parent 52d689e commit ada2343

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

packages/apps/app-dashboard/src/components/developer-dashboard/AbilitySelectorModal.tsx

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,7 @@ export function AbilitySelectorModal({
125125
}: AbilitySelectorModalProps) {
126126
// Filter out already added abilities
127127
const filteredAbilities = availableAbilities.filter(
128-
(ability) =>
129-
!existingAbilities.includes(ability.packageName)
128+
(ability) => !existingAbilities.includes(ability.packageName),
130129
);
131130

132131
const handleRowClick = async (event: RowClickedEvent) => {
@@ -163,21 +162,6 @@ export function AbilitySelectorModal({
163162
{existingAbilities.length > 0 &&
164163
` (${existingAbilities.length} abilities already added)`}
165164
</DialogDescription>
166-
<div
167-
className="mt-3 p-2.5 rounded-lg text-xs"
168-
style={{
169-
backgroundColor: 'rgba(255, 66, 5, 0.08)',
170-
border: '1px solid rgba(255, 66, 5, 0.2)',
171-
...fonts.body,
172-
}}
173-
>
174-
<span style={{ color: theme.brandOrange, fontWeight: 600 }}>Note:</span>{' '}
175-
<span className={theme.text}>
176-
Don't see your Ability? Abilities with the{' '}
177-
<span style={{ color: theme.brandOrange, fontWeight: 500 }}>dev</span> deployment
178-
status aren't shown here!
179-
</span>
180-
</div>
181165
</DialogHeader>
182166

183167
<div className={`flex-1 min-h-0 border ${theme.mainCardBorder} rounded-lg overflow-hidden`}>

0 commit comments

Comments
 (0)