From 714d87241ceb07dfd6c08cee55347a937e97a279 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Fri, 25 Aug 2023 14:15:02 +0200 Subject: build: allow overriding git details & disabling updating (#1677) Co-authored-by: V --- src/components/VencordSettings/UpdaterTab.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components') diff --git a/src/components/VencordSettings/UpdaterTab.tsx b/src/components/VencordSettings/UpdaterTab.tsx index 4d0b86c..6766cf0 100644 --- a/src/components/VencordSettings/UpdaterTab.tsx +++ b/src/components/VencordSettings/UpdaterTab.tsx @@ -249,4 +249,4 @@ function Updater() { ); } -export default IS_WEB ? null : wrapTab(Updater, "Updater"); +export default IS_UPDATER_DISABLED ? null : wrapTab(Updater, "Updater"); -- cgit