Skip to content

Commit

Permalink
Merge pull request #50 from weaponsforge/dev
Browse files Browse the repository at this point in the history
v1.0.8
  • Loading branch information
weaponsforge authored Aug 26, 2022
2 parents 515b2ae + 4a98a63 commit 6e5e88b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion client/pages/todo/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { useState } from 'react'
import { useDispatch, useSelector } from 'react-redux'
import { unwrapResult } from '@reduxjs/toolkit'
import { useRouter } from 'next/router'
import { createNewTodo, todosReset } from '@/store/todo/todoThunks'
import { createNewTodo } from '@/store/todo/todoThunks'
import { todosReset } from '@/store/todo/todoSlice'

import TodoInputForm from '@/components/todo/inputform'

Expand Down
3 changes: 2 additions & 1 deletion client/pages/todo/edit/[...id].js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { useState, useEffect, useRef } from 'react'
import { useDispatch, useSelector } from 'react-redux'
import { unwrapResult } from '@reduxjs/toolkit'
import { useRouter } from 'next/router'
import { updateExistingTodo, todosReset, fetchTodo } from '@/store/todo/todoThunks'
import { updateExistingTodo, fetchTodo } from '@/store/todo/todoThunks'
import { todosReset } from '@/store/todo/todoSlice'

import TodoInputForm from '@/components/todo/inputform'

Expand Down

0 comments on commit 6e5e88b

Please sign in to comment.