Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .claude/settings.local.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
"Bash(git log:*)",
"Bash(grep:*)",
"Bash(powershell -Command \"Get-Content ''e:\\\\MyTaskly\\\\MyTaskly-app\\\\src\\\\locales\\\\en.json'' | Select-Object -Last 20\")",
"Bash(powershell -Command \"Get-Content ''e:\\\\MyTaskly\\\\MyTaskly-app\\\\src\\\\locales\\\\it.json'' | Select-Object -Last 20\")"
"Bash(powershell -Command \"Get-Content ''e:\\\\MyTaskly\\\\MyTaskly-app\\\\src\\\\locales\\\\it.json'' | Select-Object -Last 20\")",
"Bash(npm ls:*)"
],
"deny": [],
"defaultMode": "acceptEdits"
Expand Down
6 changes: 0 additions & 6 deletions src/navigation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import NotificationDebugScreen from "./screens/NotificationDebug";
import BugReportScreen from "./screens/BugReport";
//import StatisticsScreen from "./screens/Statistics";
import { NotFound as NotFoundScreen } from "./screens/NotFound";
import CalendarWidgetDemoScreen from "./screens/CalendarWidgetDemo";
import eventEmitter, { emitScreenChange, EVENTS } from "../utils/eventEmitter";
import { useNotifications } from "../services/notificationService";
import AppInitializer from "../services/AppInitializer";
Expand Down Expand Up @@ -462,11 +461,6 @@ function AppStack() {
component={BugReportScreen}
options={{ title: t('navigation.screens.bugReport') }}
/>
<Stack.Screen
name="CalendarWidgetDemo"
component={CalendarWidgetDemoScreen}
options={{ title: 'Calendar Widget Demo' }}
/>
<Stack.Screen name="NotFound" component={NotFoundScreen} />
</Stack.Navigator>
</>
Expand Down
Loading