Skip to content

Commit

Permalink
fix incorrect variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
nclslbrn committed Feb 1, 2024
1 parent a5f1c67 commit afbf86f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/artists/t.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Scheme } from './../type.d';

const taubierArp: Scheme = {
const taeuberArp: Scheme = {
meta: {
title: 'Plate from 10 Origin',
artist: 'Sophie Taeuber-Arp',
Expand Down Expand Up @@ -28,4 +28,4 @@ const turner: Scheme = {
theme: 'dark',
};

export { taubierArp, turner };
export { taeuberArp, turner };
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { okeefe } from './artists/o';
import { picasso, pollard, pollock } from './artists/p';
import { rauschenberg, riley, rothko } from './artists/r';
import { saville, sherman } from './artists/s';
import { taubierArp, turner } from './artists/t';
import { taeuberArp, turner } from './artists/t';
import { vasarely, vermeer } from './artists/v';
import { yoshitoshi } from './artists/y';

Expand Down Expand Up @@ -64,7 +64,7 @@ const entries: EntryScheme = {
rothko,
saville,
sherman,
taubierArp,
taeuberArp,
turner,
vasarely,
vermeer,
Expand Down

0 comments on commit afbf86f

Please sign in to comment.