diff --git a/docs/samples/todoapp/unoplatform.md b/docs/samples/todoapp/unoplatform.md
index 77fda1b..e39e485 100644
--- a/docs/samples/todoapp/unoplatform.md
+++ b/docs/samples/todoapp/unoplatform.md
@@ -18,6 +18,14 @@ If you bump into issues at this point, ensure you can properly develop and run U
!!! info Tested platforms
The TodoApp.Uno sample is known to work on Android and Desktop. We have not tested on other platforms.
+!!! info WASM0001 warning on the browserwasm head
+ When building the `browserwasm` head, you may see a `WASM0001` warning about native varargs
+ functions (`sqlite3_config`/`sqlite3_db_config`) in the bundled SQLite provider. This is
+ harmless diagnostic noise from the WebAssembly SDK's native-interop check - the sample's
+ actual SQLite usage never calls those functions directly - and is already suppressed for
+ this sample's `.csproj`. See the [Blazor WASM support](../../in-depth/client/advanced/blazor-wasm.md#suppress-the-wasm0001-warning)
+ page for more detail on why this warning occurs and how to suppress it in your own project.
+
## Deploy a datasync server to Azure
Before you begin adjusting the application for offline usage, you must [deploy a datasync service](./server.md). Make a note of the URI of the service before continuing.
diff --git a/samples/todoapp/TodoApp.Uno/TodoApp.Uno/TodoApp.Uno.csproj b/samples/todoapp/TodoApp.Uno/TodoApp.Uno/TodoApp.Uno.csproj
index aa6b4f9..4719f19 100644
--- a/samples/todoapp/TodoApp.Uno/TodoApp.Uno/TodoApp.Uno.csproj
+++ b/samples/todoapp/TodoApp.Uno/TodoApp.Uno/TodoApp.Uno.csproj
@@ -66,6 +66,20 @@
$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'
">$(MSBuildWarningsAsMessages);MT7156
+
+ $(NoWarn);WASM0001
+