Skip to content

Commit

Permalink
Merge pull request #404 from ziegenberg/fix-admin-ui
Browse files Browse the repository at this point in the history
add typing and fix build
  • Loading branch information
lkiesow authored May 21, 2024
2 parents d4ac7bd + d97bb1d commit 34dd129
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/src/components/shared/Table.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React, { useEffect, useState } from "react";
import { useTranslation } from "react-i18next";
// @ts-expect-error TS(7016): Could not find a declaration file for module 'styl... Remove this comment to see the full error message
import styled from "styled-components";
import {
getPageOffset,
Expand Down Expand Up @@ -46,7 +45,7 @@ const SortIcon = styled.i`
background-image: url(${sortIcon});
`;

const SortActiveIcon = styled.i`
const SortActiveIcon = styled.i<{order: string}>`
float: right;
margin: 12px 0 0 5px;
top: auto;
Expand Down

0 comments on commit 34dd129

Please sign in to comment.