Skip to content

Commit 04382b0

Browse files
committed
remove TODO comments
1 parent 02dc420 commit 04382b0

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

frontend/src/components/ChangePasswordModal/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ const ChangePasswordModal = forwardRef<HTMLDivElement, ChangePasswordModalProps>
2424
const isUpdateDisabled = !(isCurrPasswordValid && isNewPasswordValid && isConfirmPasswordValid);
2525

2626
const handleSubmit = async () => {
27-
//TODO: test with token (only tested without)
2827
const accessToken = localStorage.getItem("token");
2928

3029
try {

frontend/src/components/EditProfileModal/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ const EditProfileModal = forwardRef<HTMLDivElement, EditProfileModalProps>((prop
3737
const isUpdateDisabled = firstNameError || lastNameError || !checkForChanges();
3838

3939
const handleSubmit = async () => {
40-
// TODO: test with token (only tested without)
4140
const accessToken = localStorage.getItem("token");
4241

4342
try {

0 commit comments

Comments
 (0)