Skip to content

Commit

Permalink
Merge pull request #2959 from navikt/hotfix/navigate-funker-ikke
Browse files Browse the repository at this point in the history
Må redirecte med god gammeldags redirect fordi navigate ikke endrer u…
  • Loading branch information
charliemidtlyng authored Nov 27, 2024
2 parents 6d8839a + c895729 commit 9e75acc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/frontend/Felles/HeaderMedSøk/PersonSøk.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { ISøkPerson } from '../../App/typer/personsøk';
import { useApp } from '../../App/context/AppContext';
import { IPersonIdent } from '../../App/typer/felles';
import { v4 as uuidv4 } from 'uuid';
import { useNavigate } from 'react-router-dom';
// import { useNavigate } from 'react-router-dom';
import { MannIkon } from '../Ikoner/MannIkon';
import { KvinneIkon } from '../Ikoner/KvinneIkon';
import { Kjønn } from '../../App/typer/personopplysninger';
Expand Down Expand Up @@ -41,7 +41,7 @@ const SøkContainer = styled.div`

const PersonSøk: React.FC = () => {
const { axiosRequest, settToast } = useApp();
const navigate = useNavigate();
// const navigate = useNavigate();
const [resultat, settResultat] = useState<Ressurs<ISøkeresultat[]>>(byggTomRessurs());
const [uuidSøk, settUuidSøk] = useState(uuidv4());
const [fokuserSøkeresultat, settFokuserSøkeresultat] = useState<boolean>(false);
Expand Down Expand Up @@ -88,7 +88,8 @@ const PersonSøk: React.FC = () => {

const søkeresultatOnClick = (søkeresultat: ISøkeresultat) => {
if (søkeresultat.fagsakId) {
navigate(`/person/${søkeresultat.fagsakId}`); // fagsakId er mappet fra fagsakPersonId
// navigate(`/person/${søkeresultat.fagsakId}`); // fagsakId er mappet fra fagsakPersonId
window.location.href = `${window.location.origin}/person/${søkeresultat.fagsakId}`;
} else {
settPersonIdentUtenFagsak(søkeresultat.ident);
settVisModal(true);
Expand Down

0 comments on commit 9e75acc

Please sign in to comment.