chore: remove saving.js import added by mistake during rebase

This commit is contained in:
Yohan Boniface 2025-03-28 17:55:27 +01:00
parent 7ede27bf0f
commit 5259cab027
4 changed files with 0 additions and 5 deletions

View file

@ -16,7 +16,6 @@ import { Default as DefaultLayer } from '../rendering/layers/base.js'
import { Categorized, Choropleth, Circles } from '../rendering/layers/classified.js'
import { Cluster } from '../rendering/layers/cluster.js'
import { Heat } from '../rendering/layers/heat.js'
import { ServerStored } from '../saving.js'
import * as Schema from '../schema.js'
import TableEditor from '../tableeditor.js'
import * as Utils from '../utils.js'

View file

@ -2,7 +2,6 @@ import { DomUtil } from '../../vendors/leaflet/leaflet-src.esm.js'
import { uMapAlert as Alert } from '../components/alerts/alert.js'
import { MutatingForm } from './form/builder.js'
import { translate } from './i18n.js'
import { ServerStored } from './saving.js'
import * as Utils from './utils.js'
// Dedicated object so we can deal with a separate dirty status, and thus

View file

@ -1,4 +1,3 @@
import * as SaveManager from '../saving.js'
import * as Utils from '../utils.js'
import { HybridLogicalClock } from './hlc.js'
import { UndoManager } from './undo.js'

View file

@ -22,8 +22,6 @@ import { MapPermissions } from './permissions.js'
import { LeafletMap } from './rendering/map.js'
import { Request, ServerRequest } from './request.js'
import Rules from './rules.js'
import { ServerStored } from './saving.js'
import * as SAVEMANAGER from './saving.js'
import { SCHEMA } from './schema.js'
import Share from './share.js'
import Slideshow from './slideshow.js'