Skip to content

Commit

Permalink
Fixup a merge error and commit updated lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
CannonLock committed Dec 14, 2023
1 parent f9e7cf0 commit e04b520
Show file tree
Hide file tree
Showing 5 changed files with 376 additions and 9 deletions.
2 changes: 1 addition & 1 deletion server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import express from "express"
import compression from "compression"
import { renderPage } from "vite-plugin-ssr/server"
import { renderPage } from "vike/server";
import { root } from "./root.js"

// Auth imports
Expand Down
2 changes: 1 addition & 1 deletion src/pages/dev/security/index.page.route.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { render, redirect } from 'vite-plugin-ssr/abort'
import { render, redirect } from 'vike/abort'

export const guard = (pageContext) => {
const { user } = pageContext
Expand Down
2 changes: 1 addition & 1 deletion src/pages/maps/@id/edit/index.page.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { PageContextBuiltInServer } from "vike/types";
import { SETTINGS } from "~/map-interface/settings";
import { SETTINGS } from "~/settings";
import h from "@macrostrat/hyper";
import { ClientOnly } from "~/renderer/client-only";

Expand Down
2 changes: 1 addition & 1 deletion src/pages/maps/@id/edit/map-interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import boundingBox from "@turf/bbox";
import { LngLatBoundsLike } from "mapbox-gl";
import { useEffect, useMemo, useState } from "react";
import { MapNavbar } from "~/components/map-navbar";
import { SETTINGS } from "~/map-interface/settings";
import { SETTINGS } from "~/settings";
import "~/styles/global.styl";
import { s3Address, tempImageIndex } from "../../raster-images";
import styles from "./main.module.sass";
Expand Down
Loading

0 comments on commit e04b520

Please sign in to comment.