From f7441febdd1cec1a806dc7ded9b0fc36d6a503f9 Mon Sep 17 00:00:00 2001 From: William Candillon Date: Tue, 7 Jan 2025 22:59:55 +0100 Subject: [PATCH] remove bogus change --- apps/paper/src/Examples/Breathe/Breathe.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/apps/paper/src/Examples/Breathe/Breathe.tsx b/apps/paper/src/Examples/Breathe/Breathe.tsx index e807959dd9..5425839faa 100644 --- a/apps/paper/src/Examples/Breathe/Breathe.tsx +++ b/apps/paper/src/Examples/Breathe/Breathe.tsx @@ -1,4 +1,4 @@ -import React, { useEffect, useMemo } from "react"; +import React, { useMemo } from "react"; import { StyleSheet, useWindowDimensions, View } from "react-native"; import { BlurMask, @@ -66,12 +66,6 @@ export const Breathe = () => { { rotate: mix(progress.value, -Math.PI, 0) }, ]); - useEffect(() => { - return () => { - console.log("Breathe unmounting"); - }; - }, []); - return (