mirror of
https://github.com/BrenBroZAYT/dashy.git
synced 2026-06-14 00:49:58 +00:00
7 lines
236 B
JavaScript
7 lines
236 B
JavaScript
import { hideFurnitureOn } from '@/utils/defaults';
|
|
|
|
/* Returns false if page furniture should be hidden on said route */
|
|
export const shouldBeVisible = (routeName) => !hideFurnitureOn.includes(routeName);
|
|
|
|
export const x = () => null;
|