Openstatus www.openstatus.dev

๐Ÿ› some update (#1345)

* some update

* ๐Ÿ˜‚

* ci: apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

authored by

Thibault Le Ouay
autofix-ci[bot]
and committed by
GitHub
3667799a 9c9fad13

+15 -4
+2
apps/web/src/components/icons.tsx
··· 10 10 Camera, 11 11 CandlestickChart, 12 12 Check, 13 + ChevronsLeftRightEllipsis, 13 14 Clock, 14 15 Cog, 15 16 Command, ··· 143 144 server: Server, 144 145 command: Command, 145 146 radar: Radar, 147 + "chevron-left-right-ellipsis": ChevronsLeftRightEllipsis, 146 148 discord: ({ ...props }: LucideProps) => ( 147 149 <svg viewBox="0 0 640 512" {...props}> 148 150 <path
+10 -1
apps/web/src/components/marketing/pricing/pricing-table.tsx
··· 175 175 } 176 176 if ( 177 177 Array.isArray(limitValue) && 178 + limitValue.length > 0 && 179 + value !== "periodicity" 180 + ) { 181 + return limitValue.length; 182 + } 183 + 184 + if ( 185 + value === "periodicity" && 186 + Array.isArray(limitValue) && 178 187 limitValue.length > 0 179 188 ) { 180 - return limitValue.length; 189 + return limitValue[0]; 181 190 } 182 191 return limitValue; 183 192 }
+1 -1
apps/web/src/config/alternatives.ts
··· 57 57 "Monitor your endpoints globally. Learn how OpenStatus compares to Uptime Kuma.", 58 58 logo: "/assets/alternatives/uptime-kuma.png", 59 59 features: [ 60 - opensource(), 60 + opensource(true), 61 61 global(), 62 62 selfhost(), 63 63 managed(),
+1 -1
apps/web/src/config/landings.tsx
··· 73 73 ], 74 74 }, 75 75 "api-monitoring": { 76 - icon: "terminal", 76 + icon: "chevron-left-right-ellipsis", 77 77 title: "API Monitoring", 78 78 hero: "API Reliability: We've Got You Covered.", 79 79 description:
+1 -1
apps/web/src/config/pricing-table.tsx
··· 39 39 features: [ 40 40 { 41 41 value: "periodicity", 42 - label: "Frequency", 42 + label: "Check Interval", 43 43 }, 44 44 { 45 45 value: "monitors",