Skip to content

Commit a4c980b

Browse files
author
Julian Roeland
committed
🎨 - refactor: component name change
1 parent 387c877 commit a4c980b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/src/App.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import {
2929
import { useAsync } from "react-use";
3030

3131
import "./App.css";
32-
import { Logo, LogoDialog } from "./components/Logo";
32+
import { Logo, LogoDropdown } from "./components/Logo";
3333
import {
3434
OidcConfigContext,
3535
OidcConfigContextType,
@@ -106,7 +106,7 @@ function App() {
106106
value={{
107107
breadcrumbItems,
108108
primaryNavigationItems: [
109-
<LogoDialog key="logo" width={32} />,
109+
<LogoDropdown key="logo" width={32} />,
110110
{
111111
children: <Solid.HomeIcon />,
112112
title: "Home",

frontend/src/components/Logo/Logo.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export function Logo({ width }: LogoProps) {
88
return <img src="/logo.svg" alt="Open Archiefbeheer Logo" width={width} />;
99
}
1010

11-
export function LogoDialog({ width = 128 }: LogoProps) {
11+
export function LogoDropdown({ width = 128 }: LogoProps) {
1212
return (
1313
<Dropdown
1414
aria-label="Versie"

0 commit comments

Comments
 (0)