🚀 Auto-deploy: melhoria no snap e medição AR em 25/05/2026 11:17:05

This commit is contained in:
2026-05-25 11:17:05 +00:00
parent 35ce901b74
commit 00854f0255
2 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -1376,7 +1376,7 @@ export default function MeetingRoom() {
<div className="space-y-3 animate-in fade-in slide-in-from-bottom-2 duration-150">
{/* Seletor Eixo */}
<div className="flex gap-2">
{['x', 'y', 'z'].map((ax) => (
{(['x', 'y', 'z'] as const).map((ax) => (
<Button
key={ax}
size="sm"
+6 -2
View File
@@ -41,7 +41,7 @@ const Viewer = () => {
const [searchParams] = useSearchParams();
const roomId = searchParams.get("room");
const channelRef = useRef<any>(null);
const channelRef = useRef<ReturnType<typeof supabase.channel> | null>(null);
// Se não houver modelo e não estivermos em Reunião, volta para a Home
useEffect(() => {
@@ -151,7 +151,11 @@ const Viewer = () => {
secInvertY,
secInvertZ,
activeModelFileName,
sendMeetingUpdate
sendMeetingUpdate,
fineTuning,
sectionEnabled,
sectionLevel,
sectionInvert
]);
const handleFileUpload = useCallback(async (e: React.ChangeEvent<HTMLInputElement>) => {