Skip to content

Commit

Permalink
fix: Fixed more merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeccaeve committed Sep 18, 2024
1 parent b9c8c24 commit 7ce8f8c
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,38 +125,15 @@ export function publicationsSelect({ target, routes }) {
);
}

<<<<<<< HEAD
export function resourceCatalog({
target,
apiUrl,
excludedCategories,
excludedFilters,
excludedResources,
allowedCategories,
allowedFilters,
}) {
=======
export function resourceCatalog({ target, catalogSources, onRamps }) {
>>>>>>> resourceCatalogUpdates
const store = configureStore({
reducer: {
resourceCatalog: catalogSlice,
},
});
ReactDOM.createRoot(target).render(
<Provider store={store}>
<<<<<<< HEAD
<ResourceCatalog
apiUrl={apiUrl}
excludedCategories={excludedCategories}
excludedFilters={excludedFilters}
excludedResources={excludedResources}
allowedCategories={allowedCategories}
allowedFilters={allowedFilters}
/>
=======
<OnRampsResourceCatalog catalogSources={catalogSources} onRamps={onRamps} />
>>>>>>> resourceCatalogUpdates
</Provider>
);
}

0 comments on commit 7ce8f8c

Please sign in to comment.