mirror of
https://github.com/sechan100/daily-routine-2.git
synced 2026-07-22 05:37:51 +00:00
build: release 파일 추가 및 주석태그들 제거
This commit is contained in:
parent
45e14b0512
commit
a63687be2e
3 changed files with 3 additions and 6 deletions
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
|
|
@ -8,7 +8,8 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
|
|
|||
|
|
@ -25,9 +25,8 @@ export interface AchivementPageProps {
|
|||
month: Month;
|
||||
}
|
||||
export const AchivementPage = ({ month }: AchivementPageProps) => {
|
||||
// FIXME: routine -> note로
|
||||
const [type, setType] = useState<AchivementType>("note");
|
||||
const { view, leafBgColor } = useLeaf();
|
||||
const { leafBgColor } = useLeaf();
|
||||
|
||||
return (
|
||||
<>
|
||||
|
|
|
|||
|
|
@ -51,9 +51,6 @@ export const TodoTaskWidget = React.memo(({ task, parent }: TodoTaskProps) => {
|
|||
|
||||
|
||||
const onOptionMenu = useCallback((m: Menu) => {
|
||||
/**
|
||||
* TODO INFO
|
||||
*/
|
||||
m.addItem(i => {
|
||||
i.setTitle(`Todo: ${task.name}`);
|
||||
i.setIcon("info");
|
||||
|
|
|
|||
Loading…
Reference in a new issue