Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
mwangggg committed Feb 4, 2024
1 parent 5d9774c commit ca50985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/Rules/RulesUploadModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const parseRule = (file: File): Observable<Rule> => {
file.text().then((content) => {
const obj = JSON.parse(content);
if (obj.id) {
obj.remove('id')
obj.remove('id');
}
if (isRule(obj)) {
return obj;
Expand Down

0 comments on commit ca50985

Please sign in to comment.