From f703521a847b8dabddaa779429394c5dcf640297 Mon Sep 17 00:00:00 2001 From: Jesse Katsumata Date: Fri, 12 Jun 2020 19:28:51 +0900 Subject: [PATCH] chore: fix warning by using String.uppercase_ascii --- src/components/SidebarBlog.re | 2 +- src/components/SidebarDocs.re | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/SidebarBlog.re b/src/components/SidebarBlog.re index e9c3d66..ab737b9 100644 --- a/src/components/SidebarBlog.re +++ b/src/components/SidebarBlog.re @@ -52,7 +52,7 @@ let make = (~blogIndex) => { - {"Recent posts"->String.uppercase->React.string} + {"Recent posts"->String.uppercase_ascii->React.string} {{blogIndex->Array.map(indexEntry => diff --git a/src/components/SidebarDocs.re b/src/components/SidebarDocs.re index 8066c0d..aca0cd0 100644 --- a/src/components/SidebarDocs.re +++ b/src/components/SidebarDocs.re @@ -109,7 +109,7 @@ let make = (~docsIndex, ~currentLocation) => { )}> - {section.title->String.uppercase->React.string} + {section.title->String.uppercase_ascii->React.string}