Skip to content

Commit 8ed1960

Browse files
authored
chore(core): removed unused icons on domain grid (event-catalog#1899)
* chore(core): removed unused icons on domain grid * Create good-humans-love.md
1 parent d829b7b commit 8ed1960

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

.changeset/good-humans-love.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@eventcatalog/core": patch
3+
---
4+
5+
chore(core): removed unused icons on domain grid

.github/workflows/redeploy-eventcatalog-examples.yml

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,33 @@ on:
55
types:
66
- completed
77
jobs:
8-
redeploy:
8+
redeploy-finance:
99
runs-on: ubuntu-latest
10+
if: >
11+
github.event.workflow_run.conclusion == 'success' &&
12+
startsWith(github.event.workflow_run.head_commit.message, 'Version Packages')
1013
steps:
1114
- name: Redeploy EventCatalog Finance Example Catalog
1215
run: curl -f -X POST "$VERCEL_DEPLOY_HOOK_URL"
1316
env:
14-
VERCEL_DEPLOY_HOOK_URL: ${{ secrets.VERCEL_DEPLOY_HOOK_FINANCE_EXAMPLE_CATALOG_URL }}
17+
VERCEL_DEPLOY_HOOK_URL: ${{ secrets.VERCEL_DEPLOY_HOOK_FINANCE_EXAMPLE_CATALOG_URL }}
18+
redeploy-healthcare:
19+
runs-on: ubuntu-latest
20+
if: >
21+
github.event.workflow_run.conclusion == 'success' &&
22+
startsWith(github.event.workflow_run.head_commit.message, 'Version Packages')
23+
steps:
24+
- name: Redeploy EventCatalog Healthcare Example Catalog
25+
run: curl -f -X POST "$VERCEL_DEPLOY_HOOK_URL"
26+
env:
27+
VERCEL_DEPLOY_HOOK_URL: ${{ secrets.VERCEL_DEPLOY_HOOK_HEALTHCARE_EXAMPLE_CATALOG_URL }}
28+
redeploy-demo:
29+
runs-on: ubuntu-latest
30+
if: >
31+
github.event.workflow_run.conclusion == 'success' &&
32+
startsWith(github.event.workflow_run.head_commit.message, 'Version Packages')
33+
steps:
34+
- name: Redeploy EventCatalog Demo (FlowMart) Example Catalog
35+
run: curl -f -X POST "$VERCEL_DEPLOY_HOOK_URL"
36+
env:
37+
VERCEL_DEPLOY_HOOK_URL: ${{ secrets.VERCEL_DEPLOY_HOOK_DEMO_FLOWMART_CATALOG_URL }}

eventcatalog/src/components/Grids/DomainGrid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
ArrowsPointingOutIcon,
1212
} from '@heroicons/react/24/outline';
1313
import { buildUrl } from '@utils/url-builder';
14-
import { BoxIcon, ArrowRight, ArrowLeft } from 'lucide-react';
14+
import { BoxIcon } from 'lucide-react';
1515

1616
// ============================================
1717
// Types

0 commit comments

Comments
 (0)