Skip to content

Commit

Permalink
Flytter alle routes under [locale]
Browse files Browse the repository at this point in the history
  • Loading branch information
toresbe committed Nov 19, 2024
1 parent 916bd6d commit 3899af0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {proxyRouteHandler} from "@navikt/next-api-proxy";
import digisosConfig from "../../../lib/config.ts";
import digisosConfig from "../../../../lib/config.ts";

type RouteHandlerProxyTarget = {hostname: string; path: string; https: boolean; bearerToken?: string};
type ProxyRequestContext = {params: Promise<{path: string[]}>};
Expand Down
3 changes: 2 additions & 1 deletion src/sider/hovedmeny/paneler/NySoknadInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ export const NySoknadInfo = () => {
id="start_soknad_button"
disabled={startSoknadPending}
onClick={onSokSosialhjelpButtonClick}
icon={startSoknadPending && <Loader />}
iconPosition={"right"}
>
{t("start")}
{startSoknadPending && <Loader />}
</Button>
</div>
</>
Expand Down

0 comments on commit 3899af0

Please sign in to comment.