From 21372062e00f9d7495a51e2e8a36be504b7b5bff Mon Sep 17 00:00:00 2001 From: 0x70b1a5 <0x70b1a5@users.noreply.github.com> Date: Fri, 28 Jun 2024 11:24:38 -0400 Subject: [PATCH] Update chapter_4.md --- src/my_first_app/chapter_4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/my_first_app/chapter_4.md b/src/my_first_app/chapter_4.md index c6235ff..c8b8c18 100644 --- a/src/my_first_app/chapter_4.md +++ b/src/my_first_app/chapter_4.md @@ -423,7 +423,7 @@ In your `my_init_fn`, add the following line: ```rs homepage::add_to_homepage( "My App Name", // the name of your app - ICON, // the icon data (base64 encoded, prepended with "data:image/png;base64,") + Some(ICON), // the icon data (base64 encoded, prepended with "data:image/png;base64,") "/", // the path to your app's UI (/my_process:my_package:template.os/ is prepended automatically) ).unwrap(); ```