feat: adding o1 cache

This commit is contained in:
Chubby Granny Chaser
2025-10-14 19:26:39 +01:00
parent 41227b125e
commit 136a44473f
7 changed files with 232 additions and 63 deletions

View File

@@ -5,10 +5,7 @@
display: flex;
flex-direction: column;
gap: calc(globals.$spacing-unit * 3);
width: 100%;
max-width: 500px;
margin: 0 auto;
text-align: center;
min-width: 500px;
}
&__form {

View File

@@ -14,7 +14,7 @@ export function SortOptions({ sortBy, onSortChange }: SortOptionsProps) {
return (
<div className="sort-options__container">
<span className="sort-options__label">Sort by:</span>
<span className="sort-options__label">{t("sort_by")}</span>
<div className="sort-options__options">
<button
className={`sort-options__option ${sortBy === "achievementCount" ? "active" : ""}`}