Skip to content

Commit

Permalink
fix(AuthorizedDictyNews.tsx): fix line breaks
Browse files Browse the repository at this point in the history
The line break in the component properties was unnecessary and has been
removed to align with linting conventions.
  • Loading branch information
ktun95 committed Feb 20, 2025
1 parent 0201102 commit f2b2bce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/ui-frontpage/src/news/AuthorizedDictyNews.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ type AuthorizedDictyNewsProperties = {
queryResult: ListContentByNamespaceQueryHookResult
}

const AuthorizedDictyNews = ({ queryResult }: AuthorizedDictyNewsProperties) => {
const AuthorizedDictyNews = ({
queryResult,
}: AuthorizedDictyNewsProperties) => {
const { root, main, newsListItem } = useDictyNewsStyles()
return (
<Container className={root}>
Expand Down

0 comments on commit f2b2bce

Please sign in to comment.