diff --git a/docker-compose.yaml b/docker-compose.yaml index 66c39be..9645e11 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -25,8 +25,8 @@ services: web: build: context: ./web - target: prod -# target: development +# target: prod + target: development restart: unless-stopped stdin_open: true volumes: diff --git a/web/src/Components/Bridging/CumulativeGraph.tsx b/web/src/Components/Bridging/CumulativeGraph.tsx index ff5b84d..3661f68 100644 --- a/web/src/Components/Bridging/CumulativeGraph.tsx +++ b/web/src/Components/Bridging/CumulativeGraph.tsx @@ -2,7 +2,6 @@ import React, { useContext, useEffect, useState } from 'react' import { Area, AreaChart, CartesianGrid, Legend, ResponsiveContainer, Tooltip, XAxis, YAxis } from 'recharts' import { ParticleSizeContext } from '../../Context' import { findGraphData } from '../../Utils' -import { graphColors } from './styles' import BridgeGraph from './BridgeGraph' export function CumulativeGraph({ bridges, sizeFractions }) {