diff --git a/components/UI/Copyright/Copyright.tsx b/components/UI/Copyright/Copyright.tsx index 86b12d02..449b26c1 100644 --- a/components/UI/Copyright/Copyright.tsx +++ b/components/UI/Copyright/Copyright.tsx @@ -16,15 +16,14 @@ export function Copyright() { OpenStreetMap - {copyright && - copyright.map((elem) => ( - <> - {' · '} - - {elem.name} - - - ))} + {copyright?.map((elem) => ( + <> + {' · '} + + {elem.name} + + + ))} ); }