]> Untitled Git - lemmy-ui.git/blobdiff - src/shared/components/user-listing.tsx
Running newer prettier.
[lemmy-ui.git] / src / shared / components / user-listing.tsx
index 9efb7c18d7a2cbf17246fdf27c1b5714dcb156fe..75d8d81b97ed10aefa2ee7773c4b9213d151e897 100644 (file)
@@ -1,9 +1,9 @@
-import { Component } from 'inferno';
-import { Link } from 'inferno-router';
-import { UserSafe } from 'lemmy-js-client';
-import { showAvatars, hostname, isCakeDay } from '../utils';
-import { CakeDay } from './cake-day';
-import { PictrsImage } from './pictrs-image';
+import { Component } from "inferno";
+import { Link } from "inferno-router";
+import { UserSafe } from "lemmy-js-client";
+import { showAvatars, hostname, isCakeDay } from "../utils";
+import { CakeDay } from "./cake-day";
+import { PictrsImage } from "./pictrs-image";
 
 interface UserListingProps {
   user: UserSafe;
@@ -46,7 +46,7 @@ export class UserListing extends Component<UserListingProps, any> {
       <>
         <Link
           title={apubName}
-          className={this.props.muted ? 'text-muted' : 'text-info'}
+          className={this.props.muted ? "text-muted" : "text-info"}
           to={link}
         >
           {!this.props.hideAvatar && user.avatar && showAvatars() && (