Skip to content

Commit

Permalink
Merge pull request #922 from andrew-bierman/fix/trip_creation_functio…
Browse files Browse the repository at this point in the history
…nality
  • Loading branch information
andrew-bierman authored May 13, 2024
2 parents de1db2d + a806e8d commit 1512f44
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/app/components/ScoreContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -269,4 +269,4 @@ const loadStyles = (theme: any) => {
};
};

export default ScoreContainer;
export default ScoreContainer;
2 changes: 1 addition & 1 deletion packages/app/components/carousel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Carousel: React.FC<CarouselProps> = ({ children = [], itemWidth }) => {
const scrollToIndex = (index: number) => {
if (index >= 0 && index < children.length && scrollViewRef.current) {
scrollViewRef.current.scrollTo({
x: index * (itemWidth + 20),
x: index * 220,
y: 0,
animated: true,
});
Expand Down
2 changes: 1 addition & 1 deletion packages/app/components/feed/FeedCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -353,4 +353,4 @@ export default function Card({
</ContextMenu.Content>
</ContextMenu.Root>
);
}
}
1 change: 1 addition & 0 deletions packages/app/components/trip/createTripModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export const SaveTripContainer = ({ tripStore }: SaveTripContainerProps) => {
footerButtons={[
{
label: 'Save',
color: "#6F9CDE",
onClick: (_, closeModal) => submitTrigger(closeModal),
},
]}
Expand Down

0 comments on commit 1512f44

Please sign in to comment.