Ilhan Omar Facing Expulsion Threat – GOP Lawmaker “Actively Considering” Removal from Congress

Ilhan Omar Facing Expulsion Threat – GOP Lawmaker “Actively Considering” Removal from Congress
Posted June 15, 2026
ST. PAUL, MN
— In a desperate, high-stakes cover-up operation, establishment Democrats have successfully weaponized a partisan procedural loophole to shield radical Squad member Representative Ilhan Omar from being forced to testify under oath about her disturbing connection to the infamous $250 million "Feeding Our Future" public corruption ring.
The tense, highly anticipated showdown occurred inside the Minnesota House Fraud Prevention and State Agency Oversight Committee, where a fierce 5-3 majority vote to subpoena Omar fell exactly one vote short of the six-vote supermajority threshold required under a controversial operating agreement.
The narrow partisan escape provides Omar with temporary relief, but it has triggered a massive national backlash, with conservative lawmakers immediately vowing to bypass local roadblocks and escalate the investigation straight to the federal level on Capitol Hill.
The Architect of the Welfare Heist
Minnesota Republicans have spent months meticulously mapping out Omar’s legislative footprints, directly linking her actions to one of the largest and most brazen public fraud schemes in modern American history. At the center of the legislative corruption matrix is the federal MEALS Act, a piece of pandemic-era legislation aggressively sponsored and pushed by Omar in March 2020.
Committee Chair Kristin Robbins delivered a blistering indictment of the lawless legislation, explaining that Omar’s bill served as a perfect Trojan horse that systematically stripped away all critical regulatory oversight and accounting guardrails from federal child nutrition programs.
By intentionally blinding state and federal auditors, the MEALS Act created the exact, chaotic vacuum required for a highly organized network of corrupt actors to siphon off hundreds of millions of taxpayer dollars intended for low-income children.
"Representative Omar had some role, whether inadvertent or not," Chairwoman Robbins stated with absolute clarity. "She passed the MEALS Act in March of 2020, and that took the guardrails off the federal school nutrition program which created the conditions for Feeding Our Future."
The Safari Restaurant Smoking Gun
The multi-million-dollar criminal enterprise, which has already resulted in massive federal indictments against ringleader Aimee Bock and dozens of prominent figures within Minneapolis's Somali community, utilized fake nonprofits, fabricated meal distribution logs, and shell corporations to fund lavish lifestyles, luxury cars, and seaside real estate.
The stymied committee subpoena sought to force Omar to surrender all private communications with the indicted fraudsters and account for her aggressive public promotion of Safari Restaurant—a notorious local establishment that served as a major epicenter for the illicit cash-laundering operation.
Investigators highlighted a damning, Somali-language television interview in which Omar used her massive political platform to praise the fraudulent restaurant as a thriving, essential meal site at the exact moment the conspiracy was actively bleeding taxpayers dry.
"We thought it’d be very helpful to understand from Rep. Omar’s perspective how she thought the MEALS Act impacted the community, why she brought it, what communication she had with the fraudsters," Robbins explained, exposing why the radical Left is terrified of letting Omar speak under penalty of perjury.
Escalating to the Federal Iron Fist
Rather than demanding accountability for stolen welfare funds, committee Democrats chose to dig in their heels, launching unhinged partisan defenses to run out the clock on the current legislative session.
Lead Democrat Representative Dave Pinto openly mocked the concept of oversight, revealing the Left's complete indifference to historic corruption by claiming the committee wouldn't even use the evidence against Omar if they found it. Pinto then shifted to a predictable defense strategy, whining that the current Trump administration and federal authorities have "no hesitation going after political enemies" and investigating deep-state allies.
While the corrupt local machine celebrates its hollow procedural victory, the loop is tightening around Omar faster than her progressive allies realize. Because Omar is a sitting member of the United States Congress, she remains completely exposed to the absolute authority of federal oversight committees in Washington, D.C.
Refusing to let the trail go cold, Chairwoman Robbins confirmed that she is already in active communication with powerful, conservative allies on Capitol Hill to initiate a sweeping federal congressional subpoena. With House oversight committees already running aggressive purges against pandemic-era waste and deep-state self-dealing, the Left’s short-lived cover-up has only ensured that Ilhan Omar’s reckoning will take place on the national stage.
Report this article
Select a reason for reporting:
Inaccurate information Copyright violation Spam / advertisement Offensive content Other '; footer.hidden = true; overlay.hidden = false; document.body.style.overflow = 'hidden'; } function hideSection() { if (section) section.hidden = true; } function openModal() { if (alreadyReported) { showSuccess(); return; } overlay.hidden = false; document.body.style.overflow = 'hidden'; } function closeModal() { overlay.hidden = true; document.body.style.overflow = ''; footer.hidden = false; overlay.querySelectorAll('input[name="report_reason"]').forEach(function(r) { r.checked = false; }); document.getElementById('reportMessage').value = ''; errorBox.hidden = true; submitBtn.disabled = false; submitBtn.textContent = 'Submit report'; imageItems = []; imgGrid.innerHTML = ''; updateAttachBtn(); } btn.addEventListener('click', openModal); closeBtn.addEventListener('click', closeModal); cancelBtn.addEventListener('click', closeModal); overlay.addEventListener('click', function(e) { if (e.target === overlay) closeModal(); }); document.addEventListener('keydown', function(e) { if (!overlay.hidden && e.key === 'Escape') closeModal(); }); // --- Error helper --- function showError(msg) { errorBox.textContent = msg; errorBox.hidden = false; } // --- Submit --- submitBtn.addEventListener('click', function() { var selected = overlay.querySelector('input[name="report_reason"]:checked'); if (!selected) { showError('Please select a reason.'); return; } errorBox.hidden = true; submitBtn.disabled = true; var itemsToUpload = imageItems.filter(function(it) { return !it.uploadedUrl; }); if (itemsToUpload.length === 0) { doSubmit(selected.value); return; } submitBtn.textContent = 'Uploading…'; var done = 0, failed = 0; itemsToUpload.forEach(function(entry) { entry.statusEl.textContent = '…'; entry.statusEl.className = 'report-img-item__status'; entry.statusEl.hidden = false; resizeImage(entry.file, MAX_LONG_PX, function(resized) { uploadFile(resized, currentSlug, function(err, url) { done++; if (err) { failed++; entry.statusEl.textContent = 'Failed'; entry.statusEl.className = 'report-img-item__status err'; } else { entry.uploadedUrl = url; entry.statusEl.textContent = '✓'; entry.statusEl.className = 'report-img-item__status done'; } if (done === itemsToUpload.length) { if (failed > 0) { showError('Could not upload ' + failed + ' image(s). Remove the failed ones (red) or submit without them.' ); submitBtn.disabled = false; submitBtn.textContent = 'Submit report'; } else { doSubmit(selected.value); } } }); }); }); }); function doSubmit(reason) { submitBtn.textContent = 'Sending…'; var uploadedUrls = imageItems .map(function(it) { return it.uploadedUrl; }) .filter(Boolean); var payload = { reason: reason, message: document.getElementById('reportMessage').value.trim(), post_slug: currentSlug, post_url: window.location.href }; if (uploadedUrls.length) payload.image_urls = uploadedUrls; fetch('/api/post-report', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Requested-With': 'XMLHttpRequest' }, body: JSON.stringify(payload) }) .then(function(r) { return r.json(); }) .then(function(data) { if (data && data.ok) { markReported(currentSlug); alreadyReported = true; bodyEl.innerHTML = '✓ Thank you for your report.'; footer.hidden = true; setTimeout(function() { closeModal(); footer.hidden = false; hideSection(); }, 2000); } else { showError((data && data.message) ? data.message : 'Something went wrong. Please try again.'); submitBtn.disabled = false; submitBtn.textContent = 'Submit report'; } }) .catch(function() { showError('Connection failed. Please try again.'); submitBtn.disabled = false; submitBtn.textContent = 'Submit report'; }); } })();Comments 0
Posting as Guest '; } return; } var normalizedItems = items.slice().reverse(); var html = normalizedItems.map(function(comment) { var replies = Array.isArray(comment.replies) ? comment.replies : []; var repliesHtml = replies.map(function(reply) { return '' + '' + '' + escapeHtml(initials(reply.author_name)) + '' + '' + '' + escapeHtml(reply.author_name) + '' + escapeHtml(reply.time) + '' + '' + escapeHtml(reply.content) + '
' + '' + '' + '' + ''; }).join(''); return '' + '' + '' + escapeHtml(initials(comment.author_name)) + '' + '' + '' + escapeHtml(comment.author_name) + '' + escapeHtml(comment.time) + '' + '' + escapeHtml(comment.content) + '
' + '' + '' + '' + '' + (repliesHtml ? '' + repliesHtml + '' : '') + ''; }).join(''); if (mode === 'prepend') { listEl.insertAdjacentHTML('afterbegin', html); return; } listEl.insertAdjacentHTML('beforeend', html); } async function loadComments(page, mode) { var query = new URLSearchParams({ post_slug: postSlug, page: String(page), per_page: String(perPage), }); var response = await fetch('/api/post-comments?' + query.toString(), { method: 'GET', headers: { 'Accept': 'application/json' } }); var data = await response.json().catch(function() { return {}; }); if (!response.ok || data.ok === false) { throw new Error((data && data.message) || 'Cannot load comments.'); } var pagination = data.pagination || {}; currentPage = Number(pagination.current_page || 1); lastPage = Number(pagination.last_page || 1); totalCountEl.textContent = String((data.post && data.post.comment_count) || pagination.total || 0); loadMoreBtn.classList.toggle('comment-box__hidden', currentPage >= lastPage); renderComments(data.comments || [], mode); } async function postComment(content, parentId, feedbackTarget, submitTarget) { var authorName = ensureName(false); if (!authorName) { var forced = ensureName(true); if (!forced) { throw new Error('Please enter your name first.'); } authorName = forced; } var payload = { post_slug: postSlug, post_url: window.location.href, author_name: authorName, content: content, }; if (parentId > 0) { payload.parent_id = parentId; } if (submitTarget) submitTarget.disabled = true; if (feedbackTarget) { feedbackTarget.textContent = 'Submitting...'; feedbackTarget.style.color = ''; } try { var response = await fetch('/api/post-comments', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify(payload) }); var data = await response.json().catch(function() { return {}; }); if (!response.ok || data.ok === false) { throw new Error((data && data.message) || 'Cannot submit comment.'); } await loadComments(1, 'replace'); return true; } finally { if (submitTarget) submitTarget.disabled = false; } } form.addEventListener('submit', async function(event) { event.preventDefault(); var content = String(contentEl.value || '').trim(); if (!content) { setFeedback('Please enter comment content.', true); return; } submitBtn.disabled = true; setFeedback('Submitting...'); try { await postComment(content, 0); contentEl.value = ''; setFeedback('Comment submitted.'); } catch (error) { setFeedback(error.message || 'Cannot submit comment.', true); } finally { submitBtn.disabled = false; } }); listEl.addEventListener('click', function(event) { var replyBtn = event.target.closest('.comment-item__reply-btn'); if (replyBtn) { var row = replyBtn.closest('.comment-item'); if (!row) return; var formEl = row.querySelector('.comment-item__reply-form'); if (!formEl) return; listEl.querySelectorAll('.comment-item__reply-form').forEach(function(f) { if (f !== formEl) f.classList.add('comment-box__hidden'); }); formEl.classList.remove('comment-box__hidden'); var input = formEl.querySelector('textarea'); if (input) input.focus(); return; } var cancelBtn = event.target.closest('.comment-item__reply-cancel'); if (cancelBtn) { var rf = cancelBtn.closest('.comment-item__reply-form'); if (!rf) return; rf.classList.add('comment-box__hidden'); var rInput = rf.querySelector('textarea'); var rFeedback = rf.querySelector('.comment-item__reply-feedback'); if (rInput) rInput.value = ''; if (rFeedback) rFeedback.textContent = ''; } }); listEl.addEventListener('submit', async function(event) { var replyForm = event.target.closest('.comment-item__reply-form'); if (!replyForm) return; event.preventDefault(); var row = replyForm.closest('.comment-item'); if (!row) return; var parentId = Number(row.getAttribute('data-comment-id') || 0); var input = replyForm.querySelector('textarea'); var submit = replyForm.querySelector('.comment-item__reply-submit'); var feedback = replyForm.querySelector('.comment-item__reply-feedback'); var replyText = String((input && input.value) || '').trim(); if (!replyText) { if (feedback) { feedback.textContent = 'Please enter reply content.'; feedback.style.color = '#dc2626'; } return; } try { await postComment(replyText, parentId, feedback, submit); // setFeedback('Reply submitted.'); } catch (error) { if (feedback) { feedback.textContent = error.message || 'Cannot submit reply.'; feedback.style.color = '#dc2626'; } } }); changeNameBtn.addEventListener('click', function() { ensureName(true); }); loadMoreBtn.addEventListener('click', async function() { if (currentPage >= lastPage) return; loadMoreBtn.disabled = true; try { await loadComments(currentPage + 1, 'prepend'); } catch (error) { setFeedback(error.message || 'Cannot load more comments.', true); } finally { loadMoreBtn.disabled = false; } }); ensureName(false); loadComments(1, 'replace').catch(function(error) { setFeedback(error.message || 'Cannot load comments.', true); }); })();The One-Dollar Test That Changed Everything

The old man placed one crumpled dollar on the glossy salon counter like it was the last piece of pride he had left.
His hands shook. His gray beard hung wild over his torn coat, and every polished mirror in the bright salon seemed to reflect how badly he did not belong there. The blonde receptionist looked down at the bill, then slowly lifted her eyes to his clothes.
“Please,” the old man said softly. “I need a haircut to get a job.”
A few staff members in black uniforms smirked near the mirrors.
The receptionist gave a cold little laugh.
“That’s one dollar. A haircut is fifty.”
The old man lowered his head, embarrassed, but he did not pick the money back up.
“I can pay the rest later,” he whispered.
Her face hardened.
“We aren’t a charity. Leave.”
The salon went quiet enough to hear the hairdryer humming in the back.
Then a kind employee in a white apron stepped forward and placed a gentle hand on the old man’s shoulder.
“Ignore them,” he said. “I’ll cut it myself.”
The old man’s eyes filled with tears.
He gripped the employee’s hand and whispered:
“Thank you… I have a surprise for you.”
Then he slowly pulled a hidden golden business card from inside his torn coat—
The receptionist’s smile vanished.
The golden card trembled between the old man’s fingers, but his voice became calmer than before.
The employee looked confused. “Sir, you don’t have to give me anything.”
The old man shook his head.
“You gave me dignity before you knew my name.”
He turned the card over.
The salon fell completely silent.
Embossed across the front was the logo of the largest luxury hotel chain in the city.
The receptionist stepped closer, suddenly pale.
The old man looked at the kind employee and said, “I came here looking for someone honest.”
He placed the card in the employee’s hand.
“My hotels need a new grooming director. The salary starts tomorrow.”
The employee froze.
The receptionist whispered, “Sir… we didn’t know.”
The old man looked at her gently, but his eyes were cold.
“That was the test.”