Skip to content

Commit

Permalink
chore: remove repetitive words (#3093)
Browse files Browse the repository at this point in the history
Co-authored-by: Lautaro Petaccio <[email protected]>
  • Loading branch information
NinaLua and LautaroPetaccio authored May 1, 2024
1 parent 55616cd commit 84454a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/modules/collection/sagas.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ describe('when publishing a collection', () => {
})
})

describe('when the the provided items length does not match the length of server items', () => {
describe('when the provided items length does not match the length of server items', () => {
let finalCollection: Collection
beforeEach(() => {
finalCollection = { ...collection, id: 'collection-id', lock: Date.now() + 1000 /* Will be locked */ }
Expand All @@ -1015,7 +1015,7 @@ describe('when publishing a collection', () => {
})
})

describe('when the the provided items do not match the items found in the server', () => {
describe('when the provided items do not match the items found in the server', () => {
let finalCollection: Collection

beforeEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/item/sagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ export function* itemSaga(legacyBuilder: LegacyBuilderAPI, builder: BuilderClien
yield put(closeModal('CreateSingleItemModal'))
}
}
// Fetch the the collection items again, we don't know where the item is going to be in the pagination data
// Fetch the collection items again, we don't know where the item is going to be in the pagination data
if (location.pathname === locations.thirdPartyCollectionDetail(collectionId)) {
yield call(fetchNewCollectionItemsPaginated, collectionId)
}
Expand Down

0 comments on commit 84454a2

Please sign in to comment.