about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/hashtag.jsx
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2023-04-04 04:48:26 -0400
committerGitHub <noreply@github.com>2023-04-04 10:48:26 +0200
commit8e19c44b2c455c403dc644a6a35ef4b8c478fbd4 (patch)
treeeb2b1f8a2cfc7e8f480098b974bc9fa525cba064 /app/javascript/mastodon/components/hashtag.jsx
parent77bd32a26abbf8b49caf35dcdf170e312e48a277 (diff)
Align typings with installed versions (#24410)
Diffstat (limited to 'app/javascript/mastodon/components/hashtag.jsx')
-rw-r--r--app/javascript/mastodon/components/hashtag.jsx3
1 files changed, 0 insertions, 3 deletions
diff --git a/app/javascript/mastodon/components/hashtag.jsx b/app/javascript/mastodon/components/hashtag.jsx
index 19d87508b..94c61b654 100644
--- a/app/javascript/mastodon/components/hashtag.jsx
+++ b/app/javascript/mastodon/components/hashtag.jsx
@@ -1,7 +1,6 @@
 // @ts-check
 import React from 'react';
 import { Sparklines, SparklinesCurve } from 'react-sparklines';
-// @ts-expect-error
 import { FormattedMessage } from 'react-intl';
 import PropTypes from 'prop-types';
 import ImmutablePropTypes from 'react-immutable-proptypes';
@@ -92,9 +91,7 @@ const Hashtag = ({ name, to, people, uses, history, className, description, with
     {withGraph && (
       <div className='trends__item__sparkline'>
         <SilentErrorBoundary>
-          {/* @ts-expect-error */}
           <Sparklines width={50} height={28} data={history ? history : Array.from(Array(7)).map(() => 0)}>
-            {/* @ts-expect-error */}
             <SparklinesCurve style={{ fill: 'none' }} />
           </Sparklines>
         </SilentErrorBoundary>