From 8aff2697432ac692f72ce8372b98e13f6bca53f5 Mon Sep 17 00:00:00 2001 From: Samuel Andert Date: Mon, 24 Jul 2023 11:13:52 +0200 Subject: [PATCH] fix(docs): Correct documentation format layout --- src/lib/services/provider/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/services/provider/README.md b/src/lib/services/provider/README.md index 396173c..630deb6 100644 --- a/src/lib/services/provider/README.md +++ b/src/lib/services/provider/README.md @@ -47,6 +47,7 @@ The file has several important imports: export interface ProviderData { walletConnectId: string; } +``` ### ProviderData Interface This interface represents the data structure required for the provider configuration, which currently only includes the `walletConnectId`. @@ -83,3 +84,4 @@ const data: ProviderData = { }; initProvider(data); +```