Skip to content

Commit

Permalink
fix: warning in Alert component (#1353)
Browse files Browse the repository at this point in the history
  • Loading branch information
mickaelzhang authored and rakannimer committed Jan 23, 2020
1 parent 95b0d7f commit 8ee156d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dev-env/basic/src/components/Alert.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import t from 'prop-types'
//@ts-ignore do not remove this to get live-reloading from changes made in packages
import ChangesWhenAPackageSourceIsEdited from '../last-change-timestamp'
import ChangesWhenAPackageSourceIsEdited from '../last-change-timestamp' // eslint-disable-line no-unused-vars

const kinds = {
info: '#5352ED',
Expand All @@ -14,7 +14,6 @@ const AlertStyled = ({ children, kind, ...rest }) => (
<div
style={{
padding: 20,
background: 'white',
borderRadius: 3,
color: 'white',
background: kinds[kind],
Expand Down

0 comments on commit 8ee156d

Please sign in to comment.