feat: add ai generated label
This commit is contained in:
@@ -88,6 +88,7 @@ export default function WallpaperPage() {
|
|||||||
{selectedWallpaper.creator_name ? (
|
{selectedWallpaper.creator_name ? (
|
||||||
<Text className="text-white text-center opacity-50 text-xs">
|
<Text className="text-white text-center opacity-50 text-xs">
|
||||||
{selectedWallpaper.creator_name}
|
{selectedWallpaper.creator_name}
|
||||||
|
{selectedWallpaper.is_ai_generated ? "· AI Generated" : ""}
|
||||||
</Text>
|
</Text>
|
||||||
) : null}
|
) : null}
|
||||||
{selectedWallpaper.source_url ? (
|
{selectedWallpaper.source_url ? (
|
||||||
|
@@ -12,6 +12,7 @@ interface ImageAsset {
|
|||||||
thumbnail_url: string;
|
thumbnail_url: string;
|
||||||
source_url?: string;
|
source_url?: string;
|
||||||
creator_name?: string;
|
creator_name?: string;
|
||||||
|
is_ai_generated?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type { ImageAsset };
|
export type { ImageAsset };
|
||||||
|
Reference in New Issue
Block a user