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:
Arthur Belleville 2026-04-15 14:02:26 +02:00
parent 956f97b19f
commit 0ffcb871d8
No known key found for this signature in database
2 changed files with 3 additions and 4 deletions

View file

@ -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 = () => {

View file

@ -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";