Skip to content

Commit

Permalink
Clean up - typo, linting, comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mjac0bs committed Oct 22, 2024
1 parent fc941b8 commit 8ec6f6b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ interface Props {
*/
isToggleable?: boolean;
/**
* The text to mask; if the text is not masked, render the original text or the styled text via children.
* The original, maskable text; if the text is not masked, render this text or the styled text via children.
*/
text: string | undefined;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const ProfileSettings = () => {
Mask Sensitive Data
</Typography>
<Typography marginBottom={1} variant="body1">
Mask IP addresses and user contact information for data for privacy.
Mask IP addresses and user contact information for data privacy.
</Typography>
<FormControlLabel
control={
Expand Down
2 changes: 1 addition & 1 deletion packages/manager/src/types/ManagerPreferences.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ export interface ManagerPreferences extends UserPreferences {
linodes_view_style?: 'grid' | 'list';
longviewTimeRange?: string;
main_content_banner_dismissal?: Record<string, boolean>;
maskSensitiveData?: boolean;
nodebalancers_group_by_tag?: boolean;
pageSizes?: Record<string, number>;
maskSensitiveData?: boolean;
secure_vm_notices?: 'always' | 'header' | 'never';
sortKeys?: Partial<Record<string, OrderSet>>;
theme?: ThemeChoice;
Expand Down

0 comments on commit 8ec6f6b

Please sign in to comment.