Openstatus www.openstatus.dev

fix: disabled state for pro (#913)

authored by

Maximilian Kaske and committed by
GitHub
80e41254 5806b6e7

+2 -2
+2 -2
apps/web/src/app/app/[workspaceSlug]/(dashboard)/notifications/(overview)/_components/channel-table.tsx
··· 40 40 ? "http://localhost:3000" 41 41 : "https://www.openstatus.dev" 42 42 }/app/${workspace.slug}/notifications/new/pagerduty&version=2`} 43 - disabled={disabled || isPagerDutyAllowed} 43 + disabled={disabled || !isPagerDutyAllowed} 44 44 /> 45 45 <Separator /> 46 46 <Channel ··· 54 54 title="SMS" 55 55 description="Send notifications to your phones." 56 56 href="./notifications/new/sms" 57 - disabled={disabled || isSMSAllowed} 57 + disabled={disabled || !isSMSAllowed} 58 58 /> 59 59 </div> 60 60 </div>