]> Untitled Git - lemmy-ui.git/blobdiff - src/shared/components/community-link.tsx
Running newer prettier.
[lemmy-ui.git] / src / shared / components / community-link.tsx
index a0f2ba81f60c4c6d7d75efd1eaa019da28069b37..5a85a127e80d4365d8629e4225c9b54936ceac3c 100644 (file)
@@ -1,8 +1,8 @@
-import { Component } from 'inferno';
-import { Link } from 'inferno-router';
-import { CommunitySafe } from 'lemmy-js-client';
-import { hostname, showAvatars } from '../utils';
-import { PictrsImage } from './pictrs-image';
+import { Component } from "inferno";
+import { Link } from "inferno-router";
+import { CommunitySafe } from "lemmy-js-client";
+import { hostname, showAvatars } from "../utils";
+import { PictrsImage } from "./pictrs-image";
 
 interface CommunityLinkProps {
   // TODO figure this out better
@@ -39,7 +39,7 @@ export class CommunityLink extends Component<CommunityLinkProps, any> {
     return (
       <Link
         title={apubName}
-        className={`${this.props.muted ? 'text-muted' : ''}`}
+        className={`${this.props.muted ? "text-muted" : ""}`}
         to={link}
       >
         {!this.props.hideAvatar && community.icon && showAvatars() && (