From 1bc97773c8d3ff547f199ffa34bb843ec37c6419 Mon Sep 17 00:00:00 2001 From: Jakub Serafin Date: Wed, 30 Aug 2023 10:13:57 +0200 Subject: [PATCH] (core) fix for master not building - in gristUrls.ts imports was duplicated Test Plan: none Reviewers: jarek Reviewed By: jarek Differential Revision: https://phab.getgrist.com/D4021 --- app/common/gristUrls.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/common/gristUrls.ts b/app/common/gristUrls.ts index 92c5f641..dc0ca1c0 100644 --- a/app/common/gristUrls.ts +++ b/app/common/gristUrls.ts @@ -5,14 +5,13 @@ import {encodeQueryParams, isAffirmative} from 'app/common/gutil'; import {LocalPlugin} from 'app/common/plugin'; import {StringUnion} from 'app/common/StringUnion'; import {TelemetryLevel} from 'app/common/Telemetry'; +import {ThemeAppearance, ThemeAppearanceChecker, ThemeName, ThemeNameChecker} from 'app/common/ThemePrefs'; import {getGristConfig} from 'app/common/urlUtils'; import {Document} from 'app/common/UserAPI'; -import {UIRowId} from 'app/plugin/GristAPI'; import {IAttachedCustomWidget} from "app/common/widgetTypes"; -import {ThemeAppearance, ThemeAppearanceChecker, ThemeName, ThemeNameChecker} from './ThemePrefs'; +import {UIRowId} from 'app/plugin/GristAPI'; import clone = require('lodash/clone'); import pickBy = require('lodash/pickBy'); -import {ThemeAppearance, ThemeAppearanceChecker, ThemeName, ThemeNameChecker} from './ThemePrefs'; export const SpecialDocPage = StringUnion('code', 'acl', 'data', 'GristDocTour', 'settings', 'webhook'); type SpecialDocPage = typeof SpecialDocPage.type;