feat(expo): navigate to tablo detail on tap instead of channel
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
956f97b19f
commit
0ffcb871d8
2 changed files with 3 additions and 4 deletions
|
|
@ -135,8 +135,7 @@ export default function TablosScreen() {
|
|||
});
|
||||
|
||||
const navigateToTablo = (tablo: UserTablo) => {
|
||||
// Navigate to tablo details or chat
|
||||
router.push(`/channel/${getChannelCid(tablo.id)}`);
|
||||
router.push(`/tablo/${tablo.id}`);
|
||||
};
|
||||
|
||||
const showFilterOptions = () => {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import React, { useState } from "react";
|
||||
import React from "react";
|
||||
import { View, Text, TouchableOpacity, StyleSheet, Alert } from "react-native";
|
||||
import { ChevronDown, ChevronRight, Plus, MoreHorizontal } from "lucide-react-native";
|
||||
import { ChevronDown, ChevronRight } from "lucide-react-native";
|
||||
import { useThemeColor } from "@/hooks/useThemeColor";
|
||||
import { useColorScheme } from "@/hooks/useColorScheme";
|
||||
import { Etape } from "@/types/tasks.types";
|
||||
|
|
|
|||
Loading…
Reference in a new issue