-
Notifications
You must be signed in to change notification settings - Fork 894
chore: remove notifications experiment #14869
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
5cc1e73
cb0be34
6e7c919
7c571ae
0107ad1
0aa6d7b
bf1a148
27d28b3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ func NewReportGenerator(ctx context.Context, logger slog.Logger, db database.Sto | |
return nil | ||
} | ||
|
||
err = reportFailedWorkspaceBuilds(ctx, logger, db, enqueuer, clk) | ||
err = reportFailedWorkspaceBuilds(ctx, logger, tx, enqueuer, clk) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Passing the main |
||
if err != nil { | ||
return xerrors.Errorf("unable to generate reports with failed workspace builds: %w", err) | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,11 +148,12 @@ const DeploymentSettingsNavigation: FC<DeploymentSettingsNavigationProps> = ({ | |
Users | ||
</SidebarNavSubItem> | ||
)} | ||
{experiments.includes("notifications") && ( | ||
<Stack direction={"row"} alignItems={"center"} css={{ gap: 0 }}> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: When passing string values directly you can pass the value directly without the brackets:
|
||
<SidebarNavSubItem href="notifications"> | ||
Notifications | ||
</SidebarNavSubItem> | ||
)} | ||
<FeatureStageBadge contentType="beta" size="sm" /> | ||
</Stack> | ||
</Stack> | ||
)} | ||
</div> | ||
|
Uh oh!
There was an error while loading. Please reload this page.