diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 3c2617b..905cfbd 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -9,6 +9,7 @@ on: - "fix/**" - "refactor/**" - "style/**" + - "release/**" pull_request: branches: - develop diff --git a/src/shared/components/shadcn/tooltip.tsx b/src/shared/components/shadcn/tooltip.tsx index 861004e..10cd3f3 100644 --- a/src/shared/components/shadcn/tooltip.tsx +++ b/src/shared/components/shadcn/tooltip.tsx @@ -29,7 +29,13 @@ function Tooltip({ function TooltipTrigger({ ...props }: React.ComponentProps) { - return ; + return ( + e.preventDefault()} + /> + ); } function TooltipContent({ diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..0f32683 --- /dev/null +++ b/vercel.json @@ -0,0 +1,3 @@ +{ + "rewrites": [{ "source": "/(.*)", "destination": "/index.html" }] +}