Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahlessner authored and mgoudy91 committed Sep 25, 2024
1 parent 7aa287e commit b338107
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion apps/typeform/frontend/src/AppConfig/AppConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ export class AppConfig extends React.Component<Props, State> {
const result: WorkspacesResponse = await response.json();
this.setState({ workspaces: this.normalizeWorkspaceResponse(result) });
} catch (_error) {
console.log({ _error });
this.props.sdk.notifier.error(
'There was a problem fetching your Typeform workspaces. Please try again.'
);
Expand Down
1 change: 0 additions & 1 deletion apps/typeform/frontend/src/TypeFormWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ interface Props {
export function TypeformPreviewWidget({ sdk }: Props) {
const { value } = sdk.parameters.invocation as Hash;
const formId = value.split('/').pop();
console.log('formId', formId);
useEffect(() => {
sdk.window.updateHeight(SDK_WINDOW_HEIGHT);
}, [sdk.window]);
Expand Down

0 comments on commit b338107

Please sign in to comment.