Skip to content

Commit

Permalink
appease the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
daibhin committed Dec 29, 2023
1 parent b42f643 commit ce210fe
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ CustomStyles.args = {
return {
...props,
active: date.day() % 2 === 0,
status: date.date() % 10 === 0 ? 'primary' : 'stealth',
type: date.date() % 10 === 0 ? 'primary' : undefined,
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ export function LemonCalendarRangeInline({
},
'LemonCalendar__range--boundary'
),
status: 'primary',
type: 'primary',
}
} else if (rangeStart && rangeEnd && date > rangeStart && date < rangeEnd) {
Expand Down
1 change: 0 additions & 1 deletion frontend/src/scenes/insights/views/Trends/FunnelsCue.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export function FunnelsCue(): JSX.Element | null {
type="info"
action={{
onClick: displayAsFunnel,
status: 'primary',
children: 'Try this insight as a funnel',
}}
onClose={() => optOut(true)}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/scenes/plugins/tabs/apps/AppView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function AppView({
if (isConfigured) {
menuItems.push({
label: pluginConfig?.enabled ? 'Disable' : 'Enable',
status: pluginConfig.enabled ? 'danger' : 'primary',
status: pluginConfig.enabled ? 'danger' : 'default',
onClick: () =>
toggleEnabled({
id: pluginConfig.id,
Expand Down

0 comments on commit ce210fe

Please sign in to comment.