chore: create/ update issue modal restructure. (#5385)

* chore: create/ update issue modal restructure.

* chore: minor UI improvements.
This commit is contained in:
Prateek Shourya 2024-08-19 19:38:28 +05:30 committed by GitHub
parent bf08d21da6
commit e6526a31c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
33 changed files with 1377 additions and 877 deletions

View file

@ -0,0 +1,3 @@
import { ISSUE_FORM_TAB_INDICES } from "@/constants/issue-modal";
export const getTabIndex = (key: string) => ISSUE_FORM_TAB_INDICES.findIndex((tabIndex) => tabIndex === key) + 1;