mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08:00
add global settings context
will be useful going forward, and simplify widget props being passed around all over the place
This commit is contained in:
@@ -14,7 +14,7 @@ const columnMap = [
|
||||
"grid-cols-1 md:grid-cols-2 lg:grid-cols-8",
|
||||
];
|
||||
|
||||
export default function List({ services, target, layout }) {
|
||||
export default function List({ services, layout }) {
|
||||
return (
|
||||
<ul
|
||||
className={classNames(
|
||||
@@ -23,7 +23,7 @@ export default function List({ services, target, layout }) {
|
||||
)}
|
||||
>
|
||||
{services.map((service) => (
|
||||
<Item key={service.name} target={target} service={service} />
|
||||
<Item key={service.name} service={service} />
|
||||
))}
|
||||
</ul>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user