Skip to content

Commit

Permalink
chore: remove console logs (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiporox authored Jul 4, 2024
1 parent a50e953 commit e35378d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/authenticators/AuthenticatorManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ export const AuthenticatorManagerProvider: React.FC<
// Allow client requests to not open modal
// While Fidget requests will
if (!modalOpen && !isLookup) {
console.log("Auth Manager Calling Open Modal", requestingFidgetId);
setModalOpen(true);
}
return {
Expand Down
1 change: 0 additions & 1 deletion src/common/components/molecules/FontSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ export const FontSelector: React.FC<FontSelectorProps> = ({
</SelectTrigger>
<SelectContent>
{settings.map((font, i) => {
console.log({ font });
return (
<SelectItem
style={font.config.style}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ const BuilderProposalItem = ({
const handleProposalClick = () => {
setProposal(proposal.proposalId);
};
console.log(proposal);
return (
<div
onClick={handleProposalClick}
Expand Down
3 changes: 0 additions & 3 deletions src/pages/s/[handle].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export const getServerSideProps = (async ({
? null
: params.handle;
if (isNull(handle)) {
console.log(`Invalid handle in ${params}`);
return {
props: {
spaceId: null,
Expand All @@ -38,8 +37,6 @@ export const getServerSideProps = (async ({
result: { user },
} = await neynar.lookupUserByUsername(handle);

console.log(`Found user with ${user.fid} for handle ${handle}`);

const { data } = await supabaseClient
.from("spaceRegistrations")
.select("spaceId")
Expand Down

0 comments on commit e35378d

Please sign in to comment.