Skip to content

Commit

Permalink
tsc again
Browse files Browse the repository at this point in the history
  • Loading branch information
sans-harness committed Feb 3, 2025
1 parent 5edd811 commit 14906b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/gitness/src/pages-v2/webhooks/webhook-executions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const WebhookExecutionsContainer = () => {
<RepoWebhookExecutionsPage
useTranslationStore={useTranslationStore}
useWebhookStore={useWebhookStore}
toRepoWebhooks={routes.toRepoWebhooks}
toRepoWebhooks={() => routes.toRepoWebhooks({ repoId: repo_ref })}
repo_ref={repo_ref}
/>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ import { getBranchEvents, getPrEvents, getTagEvents } from '../webhook-create/co
interface RepoWebhookExecutionsPageProps {
useWebhookStore: () => WebhookStore
useTranslationStore: () => TranslationStore
toRepoWebhooks: (repoId: string) => string

toRepoWebhooks: (repoRef?: string) => string

repo_ref: string
}
const RepoWebhookExecutionsPage: FC<RepoWebhookExecutionsPageProps> = ({
Expand Down

0 comments on commit 14906b9

Please sign in to comment.