Skip to content

Commit

Permalink
Merge branch 'master' into opening-hours-enhancements
Browse files Browse the repository at this point in the history
  • Loading branch information
Dlurak authored Sep 8, 2024
2 parents b4c70de + 7de1061 commit def13c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
FROM node:18-alpine AS base
FROM node:20 AS base

# Install dependencies only when needed
FROM base AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
WORKDIR /app

# Install dependencies based on the preferred package manager
Expand Down
1 change: 1 addition & 0 deletions src/components/SearchBox/onSelectedFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const overpassOptionSelected = (
.catch((e) => {
const message = `${e}`.substring(0, 100);
const content = t('searchbox.overpass_error', { message });
console.error(e); // eslint-disable-line no-console
showToast(content, 'error');
})
.finally(() => {
Expand Down

0 comments on commit def13c2

Please sign in to comment.