Skip to content

Commit

Permalink
Get rid of console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
underbluewaters committed Nov 17, 2024
1 parent eccfc15 commit 40c773b
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ export default function LayerVersioning({
]);

const versions = useMemo(() => {
console.log(item);
let versions = [
{ version: item.dataLayer!.version, source: item.dataLayer!.dataSource! },
] as {
Expand Down Expand Up @@ -125,7 +124,6 @@ export default function LayerVersioning({
);
}, [data?.projectBySlug?.projectBackgroundJobs, versions, item.id]);

console.log(versions);
// Jobs have string (UUID) ids, sources have number ids
const [selectedItemId, setSelectedItemId] = useState<string | number>(
versions[0]?.source?.id
Expand Down

0 comments on commit 40c773b

Please sign in to comment.