Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into api/post
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubinquitous committed Aug 1, 2023
2 parents f23f9b1 + e5f0397 commit 6d477da
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
4 changes: 1 addition & 3 deletions src/hooks/useEmoji.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import React from "react";
import { useRecoilState } from "recoil";
import emojiStore from "@/store/emoji.store";

const useEmoji = () => {
const [emoji, setEmoji] = useRecoilState(emojiStore);
const [emoji, setEmoji] = React.useState({ visible: false });

const openEmoji = React.useCallback(() => {
setEmoji({ visible: true });
Expand Down
11 changes: 0 additions & 11 deletions src/store/emoji.store.ts

This file was deleted.

0 comments on commit 6d477da

Please sign in to comment.