Skip to content

Commit

Permalink
fix: Round the provider form localhost warning corners (#2913)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidZarzevsky authored Dec 26, 2024
1 parent bc21d89 commit 995e8e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keep-ui/app/(keep)/providers/provider-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ const ProviderForm = ({

<div className="w-full mt-2" key="install_webhook">
{provider.can_setup_webhook && !installedProvidersMode && (
<div className={`${isLocalhost ? "bg-gray-100 p-2" : ""}`}>
<div className={`${isLocalhost ? "bg-gray-100 p-2 rounded-tremor-default" : ""}`}>
<div className="flex items-center">
<input
type="checkbox"
Expand Down

0 comments on commit 995e8e2

Please sign in to comment.