Skip to content

Commit

Permalink
Merge branch 'main' into isaac/community-board-02
Browse files Browse the repository at this point in the history
  • Loading branch information
isaachan100 committed Apr 21, 2023
2 parents 4e7c30b + 573b70d commit 9abdca7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/entities/Flyer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class Flyer {

@Field()
@Property({ nullable: true })
flyerURL: string;
description: string;

@Field()
@Property()
Expand Down
2 changes: 1 addition & 1 deletion src/tests/data/FlyerFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class FlyerFactory {

fakeFlyer.date = faker.date.past();
fakeFlyer.imageURL = faker.image.cats();
fakeFlyer.flyerURL = faker.datatype.string();
fakeFlyer.description = faker.datatype.string();
fakeFlyer.location = faker.datatype.string();
fakeFlyer.organization = exampleOrg;
fakeFlyer.organizationSlug = exampleOrg.slug;
Expand Down

0 comments on commit 9abdca7

Please sign in to comment.