From 73400e6a52b8755b89292fbbfd01450f8245e41e Mon Sep 17 00:00:00 2001 From: Tienson Qin Date: Mon, 23 May 2022 21:57:52 +0800 Subject: [PATCH] fix: is-native-platform? moved to native-platform? --- src/main/frontend/extensions/draw.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/frontend/extensions/draw.cljs b/src/main/frontend/extensions/draw.cljs index 8cffbf8722..f0e614bd36 100644 --- a/src/main/frontend/extensions/draw.cljs +++ b/src/main/frontend/extensions/draw.cljs @@ -68,5 +68,5 @@ (when-not (and (config/local-db? repo) (not granted?) (not (util/electron?)) - (not (mobile-util/is-native-platform?))) + (not (mobile-util/native-platform?))) (draw-container option draw-inner))))