fixed a thing or two

This commit is contained in:
danis
2024-01-06 10:50:57 +01:00
parent 88b111529b
commit f2f7ec3f8d
3 changed files with 10761 additions and 4 deletions
-2
View File
@@ -237,8 +237,6 @@ const styles = StyleSheet.create({
// Using `memo` to optimize rendering performance by memorizing the component's output.
// This ensures that the component only re-renders when its props change.
const MusicList = memo(MusicListComponent, (prev, next) => {
console.log('AAAAA');
console.log(prev.initialMusics, next.initialMusics);
return prev.initialMusics.length == next.initialMusics.length;
});