Skip to content

Commit

Permalink
fix: fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
3em committed Feb 19, 2025
1 parent e750b30 commit 1c746f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/views/project/project-settings-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { FC } from 'react'
import { NavLink, useLocation } from 'react-router-dom'

import { Tabs } from '@/components'
import { SandboxLayout } from '@/views'
import { SandboxLayout, TranslationStore } from '@/views'

export interface ProjectSettingsTabNavProps {
useTranslationStore: () => TranslationStore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ const RepoWebhookExecutionsPage: FC<RepoWebhookExecutionsPageProps> = ({
return (
<SandboxLayout.Main className="mx-0">
<SandboxLayout.Content className="pl-0">
<h1 className="text-foreground-1 mb-4 text-2xl font-medium">Order Status Update Webhook</h1>
<h1 className="mb-4 text-2xl font-medium text-foreground-1">Order Status Update Webhook</h1>
<Text>
This webhook triggers every time an order status is updated, sending data to the specified endpoint for
real-time tracking.
</Text>
<FormSeparator className="my-6" />
<h1 className="text-foreground-1 mb-4 text-xl font-medium">Executions</h1>
<h1 className="mb-4 text-xl font-medium text-foreground-1">Executions</h1>
{isLoading ? (
<SkeletonList />
) : executions && executions.length > 0 ? (
Expand Down

0 comments on commit 1c746f7

Please sign in to comment.