Skip to content

Commit

Permalink
fix: testing
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhadip committed Sep 8, 2023
1 parent 01fe097 commit 2859e48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ jobs:
'@semantic-release/git',
]
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions src/lib/app-button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ export const AppButton = (props: IButtonProps): JSX.Element => {
) : null}
{props.isLoading ? (
<span className="text-base w-full text-center text-white">{`Loading ...`}</span>
) : props.title ? (
) : (
<RenderTitle title={props.title} customTitleClass={props.customTitleClass} />
) : null}
)}
{props.showRightIcon ? (
<span className={[styles.righticonClass, props.customRightIconClass].join(' ')}>
{props.rightIcon}
Expand Down

0 comments on commit 2859e48

Please sign in to comment.