Skip to content

Commit

Permalink
undo two stylistic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmxcdev committed Jul 24, 2023
1 parent d7cb5a0 commit aaf73bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/@types/stores.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,9 @@ export interface ServicesStore extends TypedStore {
}

// TODO: Create actual type based on the default config in config.ts
type ISettings = Record<string, any>;
interface ISettings {
[key: string]: any;
}

export interface SettingsStore extends TypedStore {
update: (value: any) => void;
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/services/ServiceError.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const messages = defineMessages({
},
});

type IProps = WrappedComponentProps;
interface IProps extends WrappedComponentProps {}

@observer
class ServiceError extends Component<IProps> {
Expand Down

0 comments on commit aaf73bc

Please sign in to comment.