Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: npm install --global vercel@latest

- name: Link Vercel Project
run: vercel link --yes --project=${{ secrets.VERCEL_PROJECT_ID }} --token=${{ secrets.VERCEL_TOKEN }}
run: vercel link --yes --scope=${{ secrets.VERCEL_ORG_ID }} --project=${{ secrets.VERCEL_PROJECT_ID }} --token=${{ secrets.VERCEL_TOKEN }}

- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=${{ env.VERCEL_ENV }} --token=${{ secrets.VERCEL_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: npm install --global vercel@latest

- name: Link Vercel Project
run: vercel link --yes --project=${{ secrets.VERCEL_PROJECT_ID }} --token=${{ secrets.VERCEL_TOKEN }}
run: vercel link --yes --scope=${{ secrets.VERCEL_ORG_ID }} --project=${{ secrets.VERCEL_PROJECT_ID }} --token=${{ secrets.VERCEL_TOKEN }}

- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=${{ env.VERCEL_ENV }} --token=${{ secrets.VERCEL_TOKEN }}
Expand Down
3 changes: 1 addition & 2 deletions src/components/button/BlockBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ const blockBtnVariants = cva("h-13 w-full min-w-80 max-w-screen-sm rounded-lg fl
});

export interface BlockBtnProps
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
VariantProps<typeof blockBtnVariants> {
extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof blockBtnVariants> {
onClick: () => void;
children: React.ReactNode;
}
Expand Down
3 changes: 1 addition & 2 deletions src/components/button/RoundBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ const roundBtnVariants = cva("h-[2.375rem] w-[6.375rem] rounded-3xl px-4 py-2.5
});

export interface RoundBtnProps
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
VariantProps<typeof roundBtnVariants> {
extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof roundBtnVariants> {
onClick?: () => void;
children: React.ReactNode;
}
Expand Down
Loading