Skip to content

Commit

Permalink
Merge branch 'birdflop' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
saboooor committed Jun 21, 2024
2 parents 02c7b56 + 740487c commit befe084
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/routes/resources/rgb/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ export default component$(() => {
</TextInput>
<div class="flex gap-2">
<Button id="export" size="sm" onClick$={() => {
const preset: Partial<typeof defaults> = structuredClone(store);
const preset: Partial<typeof defaults> = { ...store };
(Object.keys(preset) as Array<keyof typeof defaults>).forEach(key => {
if (key != 'version' && JSON.stringify(preset[key]) === JSON.stringify(defaults[key as keyof typeof defaults])) delete preset[key];
});
Expand All @@ -561,7 +561,7 @@ export default component$(() => {
<Button id="createurl" size="sm" onClick$={() => {
const base_url = `${window.location.protocol}//${window.location.host}${window.location.pathname}`;
const url = new URL(base_url);
const params: Partial<typeof defaults> = structuredClone(store);
const params: Partial<typeof defaults> = { ...store };
(Object.entries(params) as Array<[keyof typeof defaults, any]>).forEach(([key, value]) => {
if (key == 'format' || key == 'colors') {
value = JSON.stringify(value);
Expand Down
2 changes: 1 addition & 1 deletion src/routes/staff/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const staffList = [
{
name: 'Ninevolt',
bio: 'Avid Minecraft Player. My passion is to help others and provide people with the Minecraft experience I was not given growing up. Open for new friends!',
portfolio: 'https://azrian0.github.io/Portfolio/',
portfolio: 'https://azrian.xyz/',
avatar: 'https://images-ext-1.discordapp.net/external/quhoTVdSO2j1WTCYot80PfO62U-eOxXnpgC_nZFH6hU/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/306917480432140301/3628068f5ac9fff6afe9f48f8fc1892b.webp?format=webp',
},
];
Expand Down

0 comments on commit befe084

Please sign in to comment.