Skip to content

Commit bdd8b94

Browse files
committed
style: fix linting errors
1 parent 499a1aa commit bdd8b94

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

services/profiles/profiles.class.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Poll } from 'which-types';
66
export default class Profiles {
77
app!: Application;
88

9-
async get(id: string, params: Params ): Promise<Poll[]> {
9+
async get(id: string, params: Params): Promise<Poll[]> {
1010
return this.app.service('polls').find({
1111
...params,
1212
query: {

services/users/users.hooks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const ignoreCaseRegex = async (context: HookContext): Promise<HookContext> => {
1515
export default {
1616
after: {
1717
all: hooks.protect('password'),
18-
get: discard('password'), // Protect password from local get's
18+
get: discard('password') // Protect password from local get's
1919
},
2020
before: {
2121
find: ignoreCaseRegex,

0 commit comments

Comments
 (0)