Skip to content

Commit

Permalink
fix: remove comment and useeffect
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-wasmeier-titanom committed May 25, 2024
1 parent c0d72d4 commit e68aed6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
5 changes: 0 additions & 5 deletions frontend/src/components/animated-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ function SlideView({
children: React.ReactNode;
key: string;
}) {
useEffect(() => {
return () => {
console.log("SlideView unmounted");
};
}, []);
return (
<Animated.View entering={FadeIn.duration(400)} style={{ height: "100%" }}>
{children}
Expand Down
2 changes: 0 additions & 2 deletions frontend/src/screens/create-task-group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,6 @@ export function CreateTaskGroupScreen() {
setSelectedUserIds={setSelectedUserIds}
header="Select Users"
/>
{/* TODO: When inserting a date into the database, it somehow is one day earlier in the database. For example inserting 31.05.2024 -> 30.05.2024 in db
Probably some timezone issues, investigate how to do this correctly */}
<View className=" items-start">
<Text className="text-white mb-2">Select initial start date</Text>
{Platform.select({
Expand Down

0 comments on commit e68aed6

Please sign in to comment.