Jira support component.
This commit is contained in:
@@ -10,7 +10,7 @@ import Axios from "axios";
|
||||
import Dinero from "dinero.js";
|
||||
import moment from "moment";
|
||||
import queryString from "query-string";
|
||||
import React, { lazy, Suspense, useState, useEffect } from "react";
|
||||
import React, { lazy, Suspense, useEffect, useState } from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { FaHardHat, FaRegStickyNote, FaShieldAlt } from "react-icons/fa";
|
||||
import { connect } from "react-redux";
|
||||
@@ -95,7 +95,6 @@ export function JobsDetailPage({
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
console.log("Resetting jobs form as job has changed.");
|
||||
form.resetFields();
|
||||
form.resetFields();
|
||||
}, [form, job]);
|
||||
|
||||
@@ -7,7 +7,6 @@ import UserValidatePwReset from "../../components/user-validate-pw-reset/user-va
|
||||
export default function ResetPassword() {
|
||||
const searchParams = queryString.parse(useLocation().search);
|
||||
const { mode, oobCode } = searchParams;
|
||||
console.log("ResetPassword -> mode, oobCode", mode, oobCode);
|
||||
|
||||
if (mode === "resetPassword")
|
||||
return <UserValidatePwReset oobCode={oobCode} />;
|
||||
|
||||
Reference in New Issue
Block a user