Skip to content

Commit

Permalink
fix: fixed some broken stuff that was hindering testing
Browse files Browse the repository at this point in the history
  • Loading branch information
arpargo authored and tuomas777 committed May 17, 2024
1 parent 95e8d89 commit 0d4aa11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/form/fields/Map.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const style = {
};

const ErrorMessage = styled.div`
color: ${(props) => props.theme.themeColors.danger};
color: ${(props) => props.theme['themecolors-danger']};
margin-top: 0.25rem;
font-size: 80%;
`;
Expand Down
2 changes: 1 addition & 1 deletion src/components/form/partitions/Location.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { Fragment } from 'react';
import React from 'react';
import { FormikValues } from 'formik';
import { Row, Col } from 'reactstrap';
import get from 'lodash/get';
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const NavbarRow = styled(Navbar)`
`;

const TopNavbar = styled(Navbar)`
background-color: ${(props) => props.theme.colors.helWhite};
background-color: ${(props) => props.theme.helWhite};
border-bottom: 1px solid ${(props) => props.theme.helGray};
padding: 0.5rem 0;
Expand Down

0 comments on commit 0d4aa11

Please sign in to comment.