Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
y-yagi committed Oct 14, 2020
1 parent 21356ab commit c5b9fa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PageForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function PageForm(props: Props) {
props.pageRepository.pages().add(data);
} else {
data["createdAt"] = null;
const result = props.pageRepository.page(props.pageID).update(data);
props.pageRepository.page(props.pageID).update(data);
}

const d = new Date();
Expand Down

0 comments on commit c5b9fa6

Please sign in to comment.