Skip to content

Commit 811b969

Browse files
committed
stuff
1 parent 89b5af3 commit 811b969

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/load_balancer_ci_cd.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
with:
3939
workspaces: ./backend -> target
4040
# default key
41-
key: jonline-${{ runner.OS }}-github-build
42-
shared-key: jonline-${{ runner.OS }}-github-build
41+
key: jonline-lb-${{ runner.OS }}-github-build
42+
shared-key: jonlin-lb-${{ runner.OS }}-github-build
4343

4444
- working-directory: backend
4545
run: cargo build --release

frontends/tamagui/packages/app/features/event/event_card.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ export const EventCard: React.FC<Props> = ({
260260
const onPressDetails = onPress
261261
? { onPress, accessibilityRole: "link" } as LinkProps
262262
: undefined;
263-
const detailsLink: LinkProps | undefined = isPreview ? onPressDetails ?? eventLink : undefined;
263+
const detailsLink = isPreview ? {...(onPressDetails ?? eventLink), cursor: 'pointer'} : undefined;
264264
const postLink = eventPost.link ? useLink({ href: eventPost.link }) : undefined;
265265
const authorLinkProps = eventPost.author ? authorLink : undefined;
266266
const contentLengthShadowThreshold = horizontal ? 180 : 700;

frontends/tamagui/packages/app/features/post/post_card.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export const PostCard: React.FC<PostCardProps> = ({
331331
)
332332
);
333333
const linkToDetails = isPreview || onPress;
334-
const conditionalDetailsLink = linkToDetails ? detailsLink : {};
334+
const conditionalDetailsLink = linkToDetails ? {...detailsLink, cursor: 'pointer'} : {};
335335
// const conditionalDetailsLink = isPreview || onPress ? detailsLink : {};
336336
// console.log('postCard shrinkPreviews', shrinkPreviews, forceShrinkPreview, appShrinkPreviews, forceExpandPreview, isPreview, post.id);
337337
return (

0 commit comments

Comments
 (0)