Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
robertu7 committed Oct 28, 2019
1 parent 20b74fb commit 46e413b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/components/CommentDigest/FooterActions/DownvoteButton.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import gql from 'graphql-tag'
import { useContext } from 'react'

import { Icon, TextIcon } from '~/components'
import { useMutation } from '~/components/GQL'
Expand All @@ -8,15 +9,14 @@ import {
UNVOTE_COMMENT,
VOTE_COMMENT
} from '~/components/GQL/mutations/voteComment'
import { ModalSwitch } from '~/components/ModalManager'
import { ViewerContext } from '~/components/Viewer'

import { numAbbr } from '~/common/utils'
import ICON_DISLIKE_ACTIVE from '~/static/icons/dislike-active.svg?sprite'
import ICON_DISLIKE_INACTIVE from '~/static/icons/dislike-inactive.svg?sprite'

import { DownvoteComment } from './__generated__/DownvoteComment'
import { ModalSwitch } from '~/components/ModalManager'
import { useContext } from 'react'
import { ViewerContext } from '~/components/Viewer'

const fragments = {
comment: gql`
Expand Down
6 changes: 3 additions & 3 deletions src/components/CommentDigest/FooterActions/UpvoteButton.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import gql from 'graphql-tag'
import { useContext } from 'react'

import { Icon, TextIcon } from '~/components'
import { useMutation } from '~/components/GQL'
Expand All @@ -8,15 +9,14 @@ import {
UNVOTE_COMMENT,
VOTE_COMMENT
} from '~/components/GQL/mutations/voteComment'
import { ModalSwitch } from '~/components/ModalManager'
import { ViewerContext } from '~/components/Viewer'

import { numAbbr } from '~/common/utils'
import ICON_LIKE_ACTIVE from '~/static/icons/like-active.svg?sprite'
import ICON_LIKE_INACTIVE from '~/static/icons/like-inactive.svg?sprite'

import { UpvoteComment } from './__generated__/UpvoteComment'
import { ModalSwitch } from '~/components/ModalManager'
import { useContext } from 'react'
import { ViewerContext } from '~/components/Viewer'

const fragments = {
comment: gql`
Expand Down

0 comments on commit 46e413b

Please sign in to comment.