diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 230fea3f..62e18b73 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -13,7 +13,7 @@ "@tanstack/react-query-devtools": "^5.17.9", "axios": "^1.5.1", "history": "^5.3.0", - "map-befine-swiper": "^0.8.3", + "map-befine-swiper": "^0.9.4", "react": "^18.2.0", "react-dom": "^18.2.0", "react-ga4": "^2.1.0", @@ -18522,9 +18522,9 @@ } }, "node_modules/map-befine-swiper": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/map-befine-swiper/-/map-befine-swiper-0.8.3.tgz", - "integrity": "sha512-yWUTckvw6hX/Qu+KwLV26UFKVfZyjje8EbMh6aN16DS4KNttO2vTQXUSTWbI8YarOpGyax1rwK0ImNTIaITdgw==", + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/map-befine-swiper/-/map-befine-swiper-0.9.4.tgz", + "integrity": "sha512-oXG038LTTEzM/aQM7Yg+nOa3yUqDDhI5pz0MJ6nxeaZY00l8JfUvz12gDBwDJXhJCx9iBOnPxn4YHi9bul8mQQ==", "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/frontend/package.json b/frontend/package.json index d9dba4f1..1de20651 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -20,7 +20,7 @@ "@tanstack/react-query-devtools": "^5.17.9", "axios": "^1.5.1", "history": "^5.3.0", - "map-befine-swiper": "^0.8.3", + "map-befine-swiper": "^0.9.4", "react": "^18.2.0", "react-dom": "^18.2.0", "react-ga4": "^2.1.0", diff --git a/frontend/src/components/Banner/index.tsx b/frontend/src/components/Banner/index.tsx index 091e0c75..a568a3c0 100644 --- a/frontend/src/components/Banner/index.tsx +++ b/frontend/src/components/Banner/index.tsx @@ -22,17 +22,7 @@ export default function Banner() { }; return ( - + - onRemovePinImage(image.id)} - > + onRemovePinImage(image.id)}> @@ -84,15 +82,7 @@ function PinImageContainer({ images, getPinData }: PinImageContainerProps) { return ( - + {images.map((image, index) => ( @@ -105,9 +95,7 @@ function PinImageContainer({ images, getPinData }: PinImageContainerProps) { $errorDefaultSrc={NOT_FOUND_IMAGE} /> - onRemovePinImage(image.id)} - > + onRemovePinImage(image.id)}> diff --git a/frontend/src/components/TopicCardContainer/index.tsx b/frontend/src/components/TopicCardContainer/index.tsx index 48aa58f5..0099d681 100644 --- a/frontend/src/components/TopicCardContainer/index.tsx +++ b/frontend/src/components/TopicCardContainer/index.tsx @@ -30,22 +30,11 @@ function TopicCardContainer({
- + {containerTitle} - + {containerDescription} @@ -68,14 +57,16 @@ function TopicCardContainer({ {topics && topics.map( diff --git a/frontend/webpack.common.js b/frontend/webpack.common.js index 2a5777a5..83c60894 100644 --- a/frontend/webpack.common.js +++ b/frontend/webpack.common.js @@ -2,7 +2,6 @@ const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const { ProvidePlugin, DefinePlugin } = require('webpack'); const DotenvWebpackPlugin = require('dotenv-webpack'); -const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer'); const CompressionPlugin = require('compression-webpack-plugin'); module.exports = { @@ -29,9 +28,6 @@ module.exports = { new DotenvWebpackPlugin({ systemvars: true, }), - new BundleAnalyzerPlugin({ - openAnalyzer: false, - }), new CompressionPlugin({ filename: '[path][base].gz', algorithm: 'gzip',