Skip to content

Commit

Permalink
Merge pull request #149 from HubSpot/br-remove-type-field
Browse files Browse the repository at this point in the history
Remove the meta.charset_guess type
  • Loading branch information
brandenrodgers authored Jun 14, 2024
2 parents d1ccf59 + 2589ca5 commit 6f39e93
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion lib/__tests__/notify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ describe('lib/notify', () => {
resolve();
})
);
output = `${output}${new Date(now).toISOString()} ${actionType}: ${filePath}\n`;
output = `${output}${new Date(
now
).toISOString()} ${actionType}: ${filePath}\n`;
}

// Advance all of the timers to trigger the debounce
Expand Down
1 change: 0 additions & 1 deletion types/FileManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export type File = {
friendly_url: string;
meta: {
allows_anonymous_access: boolean;
charset_guess: string;
line_count: number;
indexable: boolean;
};
Expand Down

0 comments on commit 6f39e93

Please sign in to comment.