Skip to content

Commit

Permalink
Remove debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
haynescd committed Jun 2, 2023
1 parent 2fb53d9 commit 8761b7d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/pages/studyView/StudyViewPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,8 @@ export default class StudyViewPage extends React.Component<
}

private getPostDataFilterJson(): string | undefined {
debugger;
let rawFilterJsonStr: string | undefined;
let postData: string = getBrowserWindow()?.postData?.filterJson;
const postData = getBrowserWindow()?.postData?.filterJson;
if (postData) {
try {
JSON.parse(postData);
Expand Down

0 comments on commit 8761b7d

Please sign in to comment.