Skip to content

Commit

Permalink
Updated the action button for draft status
Browse files Browse the repository at this point in the history
  • Loading branch information
shivamg9 committed Jun 26, 2024
1 parent 8262a74 commit e03fffc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/[locale]/programs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,10 @@ export default function ProgrmPage({
)
) : (
<button
className="viewButton w-24 h-8 bg-blue-700 rounded-md text-blue text-xs font-normal flex items-center justify-center"
onClick={() => handleViewClick(program)}
className="applyButton w-24 h-8 bg-blue-700 rounded-md text-blue text-xs font-normal flex items-center justify-center"
onClick={() => handleApplyClick(program)}
>
{t("View")}
{t("Apply")}
</button>
))}
</td>
Expand Down

0 comments on commit e03fffc

Please sign in to comment.