(theme: Theme)
| 7 | } |
| 8 | |
| 9 | export function isArchivedTheme(theme: Theme) { |
| 10 | return theme.data.status === 'archived' |
| 11 | } |
| 12 | |
| 13 | export function isVisibleTheme(theme: Theme) { |
| 14 | return theme.data.status === 'published' || theme.data.status === 'archived' |
nothing calls this directly
no outgoing calls
no test coverage detected