Skip to content

Commit

Permalink
feat: hide data warehouse from onboarding flow (#18367)
Browse files Browse the repository at this point in the history
hide data warehouse from new onboarding flow

Co-authored-by: Bianca Yang <[email protected]>
  • Loading branch information
xrdt and Bianca Yang authored Nov 2, 2023
1 parent ca4b4a9 commit ed0fbf0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontend/src/scenes/products/Products.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,12 @@ export function Products(): JSX.Element {
<>
<div className="flex w-full max-w-xl justify-center gap-6 flex-wrap">
{products
.filter((product) => !product.contact_support && !product.inclusion_only)
.filter(
(product) =>
!product.contact_support &&
!product.inclusion_only &&
product.type !== 'data_warehouse'
)
.map((product) => (
<ProductCard product={product} key={product.type} />
))}
Expand Down

0 comments on commit ed0fbf0

Please sign in to comment.