Skip to content

Commit 9d5f5fc

Browse files
authored
Merge branch 'main' into repo-sync
2 parents 185145e + 10811c6 commit 9d5f5fc

3 files changed

Lines changed: 2 additions & 29 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
// Test restricting low-spec machines
3838
"hostRequirements": {
39-
"cpus": 9,
39+
"cpus": 8,
4040
"memory": "8gb",
4141
"storage": "32gb"
4242
}

.github/workflows/create-translation-batch-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name: Create translation Batch Pull Request
1111
on:
1212
workflow_dispatch:
1313
schedule:
14-
- cron: '25 */6 * * *' # Every six hours
14+
- cron: '02 17 * * *' # Once a day at 17:02 UTC / 9:02 PST
1515

1616
permissions:
1717
contents: write

components/landing/GuideCard.tsx

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -20,33 +20,6 @@ export const GuideCard = ({ guide }: Props) => {
2020
/>
2121

2222
<footer className="d-flex">
23-
<div className="mr-1">
24-
{authors.length === 1 ? (
25-
<img
26-
className="avatar avatar-2 circle mr-1"
27-
src={`https://github.com/${authors[0]}.png`}
28-
alt={`@${authors[0]}`}
29-
/>
30-
) : (
31-
<div className="AvatarStack AvatarStack--three-plus">
32-
<div
33-
className="AvatarStack-body tooltipped tooltipped-se tooltipped-align-left-1"
34-
aria-label={authorString}
35-
>
36-
{authors.map((author) => {
37-
return (
38-
<img
39-
className="avatar circle"
40-
alt={`@${author}`}
41-
src={`https://github.com/${author}.png`}
42-
/>
43-
)
44-
})}
45-
</div>
46-
</div>
47-
)}
48-
</div>
49-
5023
<div>{authorString}</div>
5124
</footer>
5225
</a>

0 commit comments

Comments
 (0)