91³Ô¹ÏÍø

Watch CBS News

Golden State Valkyries make WNBA history by securing playoff spot in inaugural season

On Thursday night, the Golden State Valkyries became the first-ever franchise expansion team in WNBA history to make the playoffs in their inaugural season.

The Valkyries defeated the Dallas Wings 84-80 and secured their playoff berth inside Ballhalla and in front of thousands of their fans.

The playoff spot adds to what has been an already historic season for the Valkyries.

On Aug. 15, they became the franchise expansion team with the . They defeated the Chicago Sky and earned their 18th win in that August game. With the game on Thursday, they've extended that record to 23 wins.

Their success and fan fervor have also led them to , according to a June Sportico report. The valuation makes them the most valuable WNBA team, and the only women's sports franchise to reach the half-billion mark.

On the court, the Valkyries are one of the leading teams when it comes to three-pointers made, rebounds per game and free throw percentage.

Veronica Burton was one of the top WNBA players for assists per game, and Iliana Rupert and Cecilia Zandalasini were in the Top 5 for three-point percentage in the WNBA.

The Valkyries are also a Top 5 defensive team.

Fan reactions

Randi Seidner says as soon as she heard that the WNBA was expanding to the Bay Area, she knew she had to get season tickets. She has some of the best tickets in the house, second row, courtside, right across from the Valks bench.

"These are incredible seats," said Lynne Bernstein. "We see everything. They're amazing." 

Seidner, Bernstein and crew were on the edge of their seats almost the entire game, or they were on their feet. Bernstein had hoop dreams growing up. 

"For me, I've been watching women's basketball since the '80s and I said if we ever got a team, I was going to be here," Bernstein said. "When it did, my wife said we're going." 

They say watching the Valkyries reminds them of a time when women didn't have the opportunities they have today. They are enjoying the ride of the inaugural season and will be at Chase Center for what they hope will be many more games like this one. 

"We were going back and forth throughout the whole game," said Bernstein. "Unfortunately, we kept losing the ball and we won, though."

"They really went for it," Randi added. "I mean, they did not want to lose this game. There was no way they were losing. That's for sure."

Valkyries History

When Natalie Nakase became the head coach for the Golden State Valkyries in 2024, she also became the first Asian American WNBA coach.

She was named the June WNBA coach of the month, and now also has the distinction of leading a franchise expansion team to a playoff run in its first season.

Kayla Thornton, who scored the team's first-ever points, was named the for the games played between June 9 and June 15. Thornton also became the team's .

They got their first win against the Washington Mystics as Veronica Burton scored 22 points, 14 of them in the final quarter. Burton went on to become the first Valkyrie to score 30 points.

She also became the first-ever WNBA player to have a scoreline of 24 points, 14 assists and zero turnovers in a game.

Current Roster

Led by Nakase, the Golden State Valkyries had their first-ever season game on May 16. Their 23-18 record through Thursday night was enough to push them into the playoffs. 

The Valkyries have three regular-season games left before the playoffs begin. 

Laeticia Amihere
Monique Billings
Veronica Burton
Kaila Charles
Kaitlyn Chen
Temi Fágbénlé
Tiffany Hayes
Elizabeth Kitley
Carla Leite
Kate Martin
Iliana Rupert
Janelle Salaun
Kayla Thornton
Cecilia Zandalasini

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=50747257b890e014813016b79ece0fb2'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });