mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
Removed console.log
This commit is contained in:
@@ -54,7 +54,6 @@ const ShareModal = (props: ShareModal) => {
|
||||
data = data.sort((a: Stream, b: Stream) =>
|
||||
a.name.localeCompare(b.name),
|
||||
);
|
||||
console.log("Stream data:", data);
|
||||
setStreams(data);
|
||||
setIsLoading(false);
|
||||
// data now contains the JavaScript object decoded from JSON
|
||||
@@ -76,8 +75,6 @@ const ShareModal = (props: ShareModal) => {
|
||||
return <div>Loading...</div>;
|
||||
}
|
||||
|
||||
console.log(stream);
|
||||
|
||||
let streamOptions: SelectSearchOption[] = [];
|
||||
if (streams) {
|
||||
streams.forEach((stream) => {
|
||||
|
||||
Reference in New Issue
Block a user