summaryrefslogtreecommitdiff
path: root/app/components/wallpaper/wallpaper.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/wallpaper/wallpaper.tsx')
-rw-r--r--app/components/wallpaper/wallpaper.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/components/wallpaper/wallpaper.tsx b/app/components/wallpaper/wallpaper.tsx
index ebba75a..7aaad37 100644
--- a/app/components/wallpaper/wallpaper.tsx
+++ b/app/components/wallpaper/wallpaper.tsx
@@ -3,7 +3,7 @@ import { AutoImage as Image } from "../auto-image/auto-image"
import { presets } from "./wallpaper.presets"
import { WallpaperProps } from "./wallpaper.props"
-const defaultImage = require("./bg.png")
+//const defaultImage = require("./bg.png")
/**
* For your text displaying needs.
@@ -19,7 +19,7 @@ export function Wallpaper(props: WallpaperProps) {
const styles = [presetToUse, styleOverride]
// figure out which image to use
- const source = backgroundImage || defaultImage
+ //const source = backgroundImage || defaultImage
- return <Image source={source} style={styles} />
+ return null//<Image source={source} style={styles} />
}